Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

android - Can I Add GIF format Image as a Splash Screen

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...