【发布时间】:2016-02-03 17:06:22
【问题描述】:
在不使用 ion 库的情况下,在 Android 的 ImageView 中添加 gif 文件的最有效方法是什么?
任何东西都会有帮助,非常感谢你
【问题讨论】:
标签: android android-imageview animated-gif
在不使用 ion 库的情况下,在 Android 的 ImageView 中添加 gif 文件的最有效方法是什么?
任何东西都会有帮助,非常感谢你
【问题讨论】:
标签: android android-imageview animated-gif
我最近看到的最常见的方式是这个库 Android GIF library . 您将以这种方式将动画 GIF 插入您的 layout.xml 中
<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"
/>
【讨论】: