0
I have several images captured via camera or gallery that was uploaded via app in Firebase Storage, using Glide I can display images, but only manually (added one by one in the hand), and my uploaded images are named with the datatime. I need a template to capture all the images and display them in a listview. Using the snapshot I did with text data and it worked. But with Storage how can I do?
I was able to do using Recyclerview, as you said to send to the Firebase database the url of the photo/image created and uploaded in Storage, then just make an iteration to capture all of them and show on screen. Thanks for the tip.
– FranciscoM