79288379

Date: 2024-12-17 15:07:47
Score: 1
Natty:
Report link

You might be missing a LayoutManager on the RecyclerView. Without this, the RecyclerView won't know how to arrange its child views, leading to no data being displayed.

dummyRecyclerView.setLayoutManager(new LinearLayoutManager(getContext()));

Here’s a full guide from @Alex Mamo post on how to display data from Firestore into a RecyclerView using Android.

I hope this information helps to resolve your issue.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Alex
  • Low reputation (0.5):
Posted by: KikoZam