I don't know whether this is repeated question or not, but i didn't find any solution for my question.
I created a project in Firebase and in Storage section I added some folders and in that folders I placed 10 images in every folder.
Now what I want to do is,If I visit that particular (which has 10 images) I want to fetch all the 10 images, and display in RecyclerView.
FirebaseStorage storage;
storage = FirebaseStorage.getInstance();
reference = storage.getReferenceFromUrl(getResources().getString(R.string.image_reference));
Log.e(TAG, "onViewCreated: " + reference.child("folder1").getPath() );
In docs they said about download only one image at a time. But don't know how to display all the images in recyclerview.
Example : when you create your own API you will be sending all the json data, and in android we will be populating it in recyclerview.
But in Firebase how to achieve this. Suppose if I have 1000 Images in one folder, then how to use pagination in this scenario.
Please guys I anybody know , plz help me. Any kind of help is appreciated.