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
The issue is that you are returning the item count as 0 which tells that there is no rows to show. You should return the size of the List as shown below.
@Override
public int getItemCount() {
return data.size();
}