欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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