Day164 — Splash Screen API

Jacky Tsang
Jan 14, 2023

I tried out the new Splash Screen API.

The splash screen icon uses the same specifications as Adaptive icons

Enter and Exit animation can be customized.

An animated icon can be used in the format of “Animated Vector Drawable XML”

How to add libarary

build.gradle

android {
compileSdkVersion 31
...
}
dependencies {
...
implementation 'androidx.core:core-splashscreen:1.0.0'
}
Splash Screen
MainActivity

You can check out the whole project on my github repository.

https://github.com/jacky-ttt/CodingEveryday/tree/master/Day164-SplashScreenApi

--

--