How can I fetch Firestore data collected from multiple activities filled by the user to the same card view in a recycler view?
I'm developing an android - kotlin, a two-sided market app to request loans (borrowers) and lend money (lenders). I finished the front-end UI and coded the app to calculate the loan terms.
I'm stuck in the request and approval step. I've implemented Firestore to store and get the data in a recycler view. It works well, but I found out they are handled in different collections for each activity, leading to unorganized card views with chunks of data. Is there a way I can display all user...