此文介绍两种简单的加载GIF图片的方法,一种是用Glide,另一种使用Fresco。

一、使用Glide加载

1.注入依赖

implementation 'com.github.bumptech.glide:glide:4.9.0'

annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'

2.创建一个ImageView

android:id="@+id/glide_git_iv"

android:layout_width="150dp"

android:layout_height="150dp" />

3.找到对应控件直接使用

ImageView glideGif = findViewById(R.id.glide_git_iv);

Glide.with(this).load(PIC_URL).into(glideGif);

二、使用Fresco加载

1.注入依赖

//加载fresco图片框架

api 'com.facebook.fresco:fresco:1.10.0'

api 'com.facebook.fresco:animated-gif:1.10.0'

2.创建一个SimpleDraweeView

android:id="@+id/fresco_git_sdv"

android:layout_width="150dp"

android:layout_height="150dp" />

3.初始化及使用

Fresco.initialize(this);//初始化在加载布局的上面

setContentView(R.layout.git_test);

SimpleDraweeView frescoGif = findViewById(R.id.fresco_git_sdv);

DraweeController draweeController = Fresco.newDraweeControllerBuilder()

.setAutoPlayAnimations(true)

//设置uri,加载本地的gif资源

.setUri(Uri.parse(PIC_URL))

.build();

//设置Controller

frescoGif.setController(draweeController);

好,这样GIF就可以愉快的动起来了~

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐