android 加载 .gif 并一直刷新实现方法
程序员文章站
2022-08-11 09:57:45
android 加载 .gif 并一直刷新实现方法。
1.
dependencies {
compile ‘pl.droidsonroids.gif:androi...
android 加载 .gif 并一直刷新实现方法。
1.
dependencies {
compile ‘pl.droidsonroids.gif:android-gif-drawable:1.2.+’
}
2.
< pl.droidsonroids.gif.gifimageview
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:background=”@drawable/gif_file”
/>
3.如果不gif文件播放了一次就不播放了
private void gifloop(){ gifimageview gifimageview = (gifimageview) findviewbyid(r.id.gif_bg); gifdrawable gifdrawable = null; try { gifdrawable = new gifdrawable(getresources(), r.drawable.login_bg); gifdrawable.setloopcount(0); } catch (ioexception e) { e.printstacktrace(); } gifimageview.setimagedrawable(gifdrawable); }