My main problem is that the populateViewHolder method is never called. I checked this populateViewHolder method is excuting or not by Log. why not executing this populateViewHolder method ??
I added this dependenci
compile 'com.firebaseui:firebase-ui-database:1.2.0'
Here is my code
Query conversationQuery = mConvDatabase.orderByChild("timestamp");
FirebaseRecyclerAdapter<Conv, ConvViewHolder> firebaseConvAdapter = new FirebaseRecyclerAdapter<Conv, ConvViewHolder>(
Conv.class,
R.layout.users_single_layout,
ConvViewHolder.class,
conversationQuery
) {
@Override
protected void populateViewHolder(final ConvViewHolder convViewHolder, final Conv conv, int i) {
Log.d("success","response");