Recycler View Not Showing

后端 未结 4 535
死守一世寂寞
死守一世寂寞 2020-12-10 10:49

I have been making an app that uses a recycler view in a navigation drawer how the contents of the recycler view have not been showing up. The view is definitely their as I

4条回答
  •  -上瘾入骨i
    2020-12-10 11:13

    Replace following line

     mRecyclerView.setAdapter(adapter);
     mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
    

    with

    mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));    
    mRecyclerView.setAdapter(adapter);
    

提交回复
热议问题