Can I Add GIF format Image as a Splash Screen

血红的双手。 提交于 2019-11-30 14:08:58

问题


How can i add GIF format image as a splash screen. I tried to add but when i add it. It acts as a normal image. I don't know whether we can use Gif image as splash Screen. if there is any option to work that GIF format image.


回答1:


Yes, you can Add Gif Image for the Splash Screen. To use Gif Image in your View.

add this dependency to your build.gradle file in the app module.

For the latest version.

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

and In the XML file add this way

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

and add your Gif Image to Drawable.

For more detail visit this: https://github.com/koral--/android-gif-drawable

Or

you can Create different Frame for Image and add it one after another in short interval of time.




回答2:


use glide to solve this.

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

go to this stackoverflow link for more detail



来源:https://stackoverflow.com/questions/39871405/can-i-add-gif-format-image-as-a-splash-screen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!