我做了珠宝店的应用
我想设置一个GIF图像作为我的应用程序的背景。
是否可以设置?
我做了珠宝店的应用
我想设置一个GIF图像作为我的应用程序的背景。
是否可以设置?
是的,你可以设置GIF图像但这不会动画的GIF图像。 您需要GIF图像明确地提取到所有的帧,然后用你的动画形象GIF这里的例子
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >
<item
android:drawable="@drawable/framelayout1"
android:duration="1000"/>
<item
android:drawable="@drawable/framelayout2"
android:duration="1000"/>
<item
android:drawable="@drawable/framelayout3"
android:duration="1000"/>
<item
android:drawable="@drawable/framelayout4"
android:duration="1000"/>
....
</animation-list>
为什么要这样使用GIF动画其他地方在Android上有什么不同? 答案是 - 这是完全一样的。
以下是如何在Android上显示GIF动画: 显示动画GIF