是否有可能设置一个GIF动画文件作为我的Android应用的背景是什么?(Is it possibl

2019-08-19 00:28发布

我做了珠宝店的应用

我想设置一个GIF图像作为我的应用程序的背景。

是否可以设置?

Answer 1:

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


Answer 2:

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

以下是如何在Android上显示GIF动画: 显示动画GIF



文章来源: Is it possible to set an animated gif file as background of my app in android?