0

私はチャットアプリケーションを開発しようとしています。 firebaseListアダプタの定義中にエラーが発生しました。以下はfirebaseListアダプタの私のコードがあるとfireBaseListAdapterでFireBaseListAdaperは()を適用することができないなどのエラーを取得しています:オプションのパラメータ、実引数の下 FirebaseListAdapterを解決できません<T>

FirebaseListAdapter<ChatMessage> fbListAdapter = new FirebaseListAdapter<ChatMessage>(this,ChatMessage.class,R.layout.message,FirebaseDatabase.getInstance().getReference()) 

は私の輸入です:

import com.firebase.ui.FirebaseUI; 
import com.firebase.ui.auth.AuthUI; 
import com.firebase.ui.database.FirebaseListAdapter; 
import com.firebase.ui.database.FirebaseListOptions; 
import com.google.firebase.FirebaseApp; 
import com.google.firebase.auth.FirebaseAuth; 
import com.google.firebase.database.FirebaseDatabase; 

解決するために私を助けてくださいこの問題。

+0

は、それが@kamilhussain解決しているのですか? –

答えて

0

これはthe documentation例である:

FirebaseListOptions<Chat> options = new FirebaseListOptions.Builder<Chat>() 
     .setQuery(query, Chat.class) 
     .build(); 

FirebaseListAdapter<Chat> adapter = new FirebaseListAdapter<Chat>(options) { 
    @Override 
    protected void populateView(View v, Chat model, int position) { 
     // Bind the Chat to the view 
     // ... 
    } 
}; 
関連する問題