Android FirebaseRecyclerAdapter populateViewHolder() never get called

允我心安 提交于 2019-12-07 15:17:17

问题


I have a firebase data structure like below. I'm trying to load this data with a FirebaseRecyclerAdapter. The issue is that the populateViewHolder() does not get called. The reference to the database structure works.

I can read the data with a friendsRef.addValueEventListener. What I like to avoid with the FirebaseRecyclerAdapter.(Code below)

The data structure is:

-users  
  |-<uid>
     |-friends
         |-<uid>:name1
         |-<uid>:name2

Authentication call in the main Activity

private void firebaseAuthWithGoogle(GoogleSignInAccount acct) {

        AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
        mAuth.signInWithCredential(credential)
                .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
                    @Override
                    public void onComplete(@NonNull Task<AuthResult> task) {
                        Log.d(getString(R.string.logtag), "signInWithCredential:onComplete:" + task.isSuccessful());

                        // If sign in fails, display a message to the user. If sign in succeeds
                        // the auth state listener will be notified and logic to handle the
                        // signed in user can be handled in the listener.
                        if (!task.isSuccessful()) {
//                            Log.w(TAG, "signInWithCredential", task.getException());
                            Toast.makeText(HomeActivity.this, "Authentication failed.",
                                    Toast.LENGTH_SHORT).show();
                        }
                        // ...
                    }
                });
    }

Fragment Code:

 @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    setHasOptionsMenu(true);
    View view = inflater.inflate(R.layout.friends_fragment, container, false);
    RecyclerView friendRecyclerView = (RecyclerView) view.findViewById(R.id.friends_recycler_view);

    friendRecyclerView.setHasFixedSize(true);
    friendRecyclerView.setLayoutManager(new LinearLayoutManager(mActivity));

    DatabaseReference friendsRef = mActivity.getRootRef().child("users").child(mActivity.getAuth().getCurrentUser().getUid()).child("friends");

    FirebaseRecyclerAdapter<String, ViewHolder> recyclerViewAdapter = new FirebaseRecyclerAdapter<String, ViewHolder>(String.class, R.layout.friends_list_item, ViewHolder.class,  friendsRef) {
        @Override
        protected void populateViewHolder(ViewHolder viewHolder, String model, int position) {
            viewHolder.friendName.setText(model);
        }
    } ;

    friendRecyclerView.setAdapter(recyclerViewAdapter);

    return view;
}

@Override
protected int getContentView() {
    return R.layout.friends_fragment;
}

public static class ViewHolder extends RecyclerView.ViewHolder{
    private TextView friendName;
    public ViewHolder(View itemView) {
        super(itemView);
        friendName=(TextView) itemView.findViewById(R.id.friends_name_list_item);
    }


}

friendsRef.addValueEventListener:

DatabaseReference friendsRef = mActivity.getRootRef().child("users").child(mActivity.getAuth().getCurrentUser().getUid()).child("friends");

        friendsRef.addValueEventListener(new ValueEventListener() {
                                             @Override
                                             public void onDataChange(DataSnapshot dataSnapshot) {

                                                 for (DataSnapshot data : dataSnapshot.getChildren()) {

                                                     Log.d("tag", data.toString());
                                                 }


                                             }

回答1:


Just change the layout_height of your RecyclerView to "match_parent" in your xml



来源:https://stackoverflow.com/questions/37876904/android-firebaserecycleradapter-populateviewholder-never-get-called

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!