GIF图片在我的应用程序中不起作用

时间:2018-11-27 12:10:25

标签: java android

Gif无法与我的图书馆一起使用:

implementation 'com.github.Cutta:GifView:1.1'

repositories {
maven {
    url "https://jitpack.io"
}

我的布局

 <com.cunoraz.gifview.library.GifView
    android:id="@+id/gif1"
    android:layout_width="212dp"
    android:layout_height="132dp"
    app:gif="@drawable/tst1" />

我的apk停止了,什么也没显示。

1 个答案:

答案 0 :(得分:0)

尝试以下解决方案:

在gradle中添加

implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.5'

在布局中添加

<pl.droidsonroids.gif.GifImageView
    android:id="@+id/gif"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/abc_list_selector_holo_dark"
    />

最后,在您的活动中添加

import pl.droidsonroids.gif.GifImageView;
...

GifImageView gifImageView = (GifImageView) findViewById(R.id.gif);
gifImageView.setImageResource(R.drawable.giphy);