glide icon indicating copy to clipboard operation
glide copied to clipboard

can I load multile pictures with prority to one ImageView?

Open ukyo6 opened this issue 3 years ago • 0 comments
trafficstars

hi, can I use Glide to load multiple pictures with prority for example, I have three picutures in sd card: picture_a, picture_b, picture_c.

if(picture_a.exists( )) { Glide.load(picture_a) }else if(picture_b.exists( )) { Glide.load(picture_b) }else if(picture_c.exists( )) { Glide.load(picture_c) }

how can I pass the file list to Glide without check exist by myself.

thanks..

ukyo6 avatar Mar 01 '22 06:03 ukyo6