So I am currently using FirestoreRecyclerAdapter
to display images from the Firebase Storage via the Firestore database, that is
Firebase Storage file url > Firestore database url > RecyclerView (FirestoreRecyclerAdapter)
This is fine for a small number of images. But when dealing with 150 images per set, this is starting to become a hassle.
Is there a more efficient way of dealing with this? Like looping
through all the images from the Firebase Storage
and displaying them directly onto the RecyclerView
?
Kindly point me to a tutorial if it exists, preferably Kotlin
. I'm not really with docs. I know I'm already asking for too much. Thanks!