Android两种简单的加载GIF图片的方法
程序员文章站
2022-03-31 08:21:29
此文介绍两种简单的加载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
此文介绍两种简单的加载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
<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
<com.facebook.drawee.view.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就可以愉快的动起来了~
本文地址:https://blog.csdn.net/m0_37697747/article/details/109361588