How to download multiple pictures, on Android, from internal storage in one function to put them into a RecyclerView?

18 Views Asked by At

I have such a function:

     fun getPhotos(filePath: List<String>): List<Bitmap>
{
}

How should I download all the bitmaps without memory and performance issues? Is just using a Glide function in a loop for each String from the filePath list a good idea?

0

There are 0 best solutions below