我可以将GIF格式图像添加为启动画面

时间:2016-10-05 10:22:10

标签: android android-studio imageview gif splash-screen

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

2 个答案:

答案 0 :(得分:9)

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

将此依赖项添加到应用程序模块中的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

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

答案 1 :(得分:3)

使用滑行来解决这个问题。

ImageView imageView = findViewById(R.id.splashScreen);
        GlideDrawableImageViewTarget splashScreen = new GlideDrawableImageViewTarget(imageView);
        Glide.with(this).load(R.raw.gif_men_at_work).into(splashScreen);

转到this stackoverflow链接了解更多详情