use Glide for loading non-animating gifs

This commit is contained in:
tibbi 2018-01-04 18:05:37 +01:00
parent 327e18f3e2
commit 129858119d

View file

@ -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)
}
}
}