此文介紹兩種簡單的載入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);
複製程式碼