What is the best way to display data in a RecylerView in Android from FireStore?
My Firestore database has two collections as following.
Posts
--- Title
--- Image
--- User_ID
Users
--- User_ID
--- User_Name
I want to display Posts in a RecylerView with Title(Posts),Image(Posts) and User_Name(Users).
So what is the best way to fetch data from Firestore? What is the recommend way to write an adapter for this scenario?