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

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

作者:互联网

我正在为珠宝店做app

我想将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>

标签:animated-gif,android,background
来源: https://codeday.me/bug/20191007/1865594.html