[Android]Nothing is displayed in RecyclerView
Phenomenon
When I try to read the data in the database and display it in RecyclerView, nothing is displayed. When I set a breakpoint and examined it, there was no problem up to the point where the data was read.
Cause
The return value of the method getItemCount () implemented in the RecyclerView.Adapter class was 0.
When deciding the layout of RecyclerView, getItemCount () is used to get the number of items, so if this returns 0, nothing will be displayed.
If you override this method in Android Studio, it will initially return 0, so don't forget to change it.
@Override
public int getItemCount() {
return c; //Enter the number of items in c
}
Recent Posts
See AllIntroduction When I try to upload an app to Google Play Store, the following error occurs Your app is currently targeting API level 31....
Phenomenon I want to read data from the database and display it in a list with RecyclerView. There should be more than one registered in...
Phenomenon SQLiteDataBase is read by ContentProvider and listed in RecyclerView. Even if I update the contents of the database, it is not...
Comments