I want to display animated GIF images in my aplication. As I found out the hard way Android doesn\'t support animated GIF natively.
However it can display animations
UPDATE:
Use glide:
dependencies { implementation 'com.github.bumptech.glide:glide:4.0.0' }
usage:
Glide.with(context).load(GIF_URI).into(new GlideDrawableImageViewTarget(IMAGE_VIEW));