I'm using Glide library to load GIF files into my app. Here is what I implemented:
Glide.with(context)
.load(stringImage)
.asGif()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(postImage);
But for some reason the GIF files are loading with very slow frame. I tried to Google but I wasn't able to figure it out.