Skip to content Skip to sidebar Skip to footer

RecyclerView Not Displaying Any CardView Items

I have switched from ListView to RecyclerView and am not seeing any items displayed on my mobile device. I know for a fact that it doesn't have to do with the getItemCount() method

Solution 1:

Make sure you set a LayoutManager on your RecyclerAdapter. The most common way would be:

mCommentAdapter.setLayoutManager(new LinearLayoutManager(this));


Post a Comment for "RecyclerView Not Displaying Any CardView Items"