是否有可能将动画gif文件设置为我在android中的应用程序的背景?

时间:2013-04-02 11:31:12

标签: android background animated-gif

我正在为珠宝店做app:

我想将gif图像设置为我的应用程序的背景。

是否可以设置?

2 个答案:

答案 0 :(得分:3)

是的,您可以设置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>

答案 1 :(得分:0)

为什么这与在Android上的其他地方使用动画Gif不同? 答案是 - 它完全一样。

以下是在Android上显示GIF动画的方法: Display Animated GIF