Reputation: 37
I have a list of math topics as documents in firebaseFirestore. The objects of these topics (documents) have a field called, rootTopic that can be used to categorize them into groups.
I would like to query the collection of these topics (documents) and display them in groups using a recyclerView-in-recyclerView as seen below
THE CHALLENGE IS:
I am not quite sure how best to dynamically query and group these topics(documents). Please assist with hints or snippets on how to achieve this.
Upvotes: 0
Views: 99
Reputation: 2002
There are two ways to query the data you want:
db.collection("Mathematics").orderBy("topicName")
// Then partition the results and render them.
In any case I would suggest reading the documentation on queries and sorting cause it's pretty well explained there.
Upvotes: 1
Reputation: 1230
You should use multiple view types in a single recyclerView instead of multiple recyclerView. Here is one example article about it.
Upvotes: 0