Display Animated GIF

后端 未结 30 2097
无人及你
无人及你 2020-11-22 02:11

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

30条回答
  •  灰色年华
    2020-11-22 02:52

    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));
    

    see docs

提交回复
热议问题