将GIF添加到Android中的ImageView

时间:2016-02-03 17:06:22

标签: android android-imageview animated-gif

在不使用离子库的情况下在Android中的ImageView中添加gif文件的最有效方法是什么?

任何事情都会有所帮助,非常感谢你

1 个答案:

答案 0 :(得分:2)

我最近看到的最常见的方式是这个库 Android GIF library 。 您将以这种方式在layout.xml中插入动画GIF

<pl.droidsonroids.gif.GifTextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:drawableTop="@drawable/left_anim"
    android:drawableStart="@drawable/left_anim"
    android:background="@drawable/bg_anim"
    />