use Glide for loading non-animating gifs
This commit is contained in:
parent
327e18f3e2
commit
129858119d
1 changed files with 16 additions and 12 deletions
|
@ -148,6 +148,7 @@ fun Activity.loadImage(path: String, target: MySquareImageView, horizontalScroll
|
|||
loadJpg(path, target, cropThumbnails)
|
||||
}
|
||||
} else if (path.isGif()) {
|
||||
if (animateGifs) {
|
||||
try {
|
||||
val gifDrawable = GifDrawable(path)
|
||||
target.setImageDrawable(gifDrawable)
|
||||
|
@ -163,6 +164,9 @@ fun Activity.loadImage(path: String, target: MySquareImageView, horizontalScroll
|
|||
} catch (e: OutOfMemoryError) {
|
||||
loadJpg(path, target, cropThumbnails)
|
||||
}
|
||||
} else {
|
||||
loadJpg(path, target, cropThumbnails)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue