glide
glide copied to clipboard
can I load multile pictures with prority to one ImageView?
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..