RecyclerView doesn't load items on first start of activity

后端 未结 4 527
醉酒成梦
醉酒成梦 2020-12-11 11:59

Everytime we open the activity that bares the recycler adapter it fails to load on the first try. Exiting the activity and re-entering fixes the problem. Here is a gif for e

4条回答
  •  一个人的身影
    2020-12-11 12:23

    Replace this:

    recyclerView = (RecyclerView)findViewById(R.id.active_chats);
    ActiveChatConvo adapter = new ActiveChatConvo(users,this);
    recyclerView.setAdapter(adapter);
    mLinearLayoutManager = new LinearLayoutManager(this);
    //mLinearLayoutManager.setStackFromEnd(true);
    recyclerView.setLayoutManager(mLinearLayoutManager);
    

    with this:

    recyclerView = (RecyclerView)findViewById(R.id.active_chats);
    ActiveChatConvo adapter = new ActiveChatConvo(users,this);
    mLinearLayoutManager = new LinearLayoutManager(this);
    //mLinearLayoutManager.setStackFromEnd(true);
    recyclerView.setLayoutManager(mLinearLayoutManager);
    recyclerView.setAdapter(adapter);
    

    You need to set adapter after you set LayoutManager.

提交回复
热议问题