其他分享
首页 > 其他分享> > android – 我可以添加GIF格式图像作为启动画面

android – 我可以添加GIF格式图像作为启动画面

作者:互联网

如何将GIF格式图像添加为启动画面.我试图添加,但当我添加它.它充当正常图像.我不知道我们是否可以使用Gif图像作为启动画面.如果有任何选项可以使用该GIF格式图像.

解决方法:

是的,您可以为启动画面添加Gif图像.在视图中使用Gif图像.

将此依赖项添加到app模块中的build.gradle文件中.

对于最新版本.

dependencies {
    compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.10'
}

并在XML文件中添加这种方式

<pl.droidsonroids.gif.GifTextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/yourgif_image"
    />

并将您的Gif图像添加到Drawable.

有关更多详细信息,请访问:https://github.com/koral–/android-gif-drawable

要么

您可以为图像创建不同的帧,并在短时间内一个接一个地添加它.

标签:android,android-studio,imageview,splash-screen,gif
来源: https://codeday.me/bug/20191005/1856146.html