can I load multile pictures with prority to one ImageView?
Open
- Dominant language
- Java
- Stars
- 35k
- Forks
- 6.2k
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 8
Description
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..
Contributor guide
Assessment
This issue has not been assessed yet.