我在ImageView下面找到了使用Gif的链接但是我不知道如何使用它。 我想从sdcard或assets文件夹在ImageView上显示Gif Image。 帮我 。谢谢 http://www.java2s.com/Open-Source/Android_Free_Code/ImageView/Download_Free_code_ImageViewEx.htm
我也使用教程:如何在Android中播放动画GIF。但是当我使用它时,在Activity上我只显示一个gif。我希望在一个Activity和屏幕的不同位置显示很多gif图片。
答案 0 :(得分:0)
如果你想要显示gif动画,试试这个因为android和ios不能支持这种动画 在可绘制文件夹my_gif.xml中创建
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/image_1" android:duration="100" />
<item android:drawable="@drawable/image_2" android:duration="100" />
<item android:drawable="@drawable/image_3" android:duration="100" />
</animation-list>
为img视图添加参数 android:src =“@ drawable / my_gif”