So I'm learning about Firebase Storage for android and I've hit a wall. I want to get all the images I have stored in a folder in my Firebase Storage and once I get a reference to them I want to stored them in a ListView or RecyclerView. How Do i do that? I mean I can get reference to the folder:
StorageReference storageReference = FirebaseStorage.getInstance().getReference("gallery");
But then how do I get all the images in the gallery folder and display them in a Listview or recyclerView?