Your First Kotlin Android App: Polishing the App

Jul 14 2022 · Kotlin 1.6, Android 12, Android Studio Bumblebee | 2021.1.1

Part 3: Finish the App

22. Add a Custom Splash Screen

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 21. Setup App Icon & Display Name Next episode: 23. Run the App on a Real Device

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

You’ve setup up our app icons and looked at how to change the display name if there’s a need to. It’s time to add a custom splash screen.

implementation 'androidx.core:core-splashscreen:1.0.0-beta02'
<!--    Splash Screen Theme-->
<style name="Theme.CustomSplashScreenTheme" parent="Theme.SplashScreen">

</style>
...
  <item name="windowSplashScreenBackground">@color/white</item>
  <item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
  <item name="postSplashScreenTheme">@style/Theme.Bullseye.NoActionBar.FullScreen</item>
...
android:theme="@style/Theme.CustomSplashScreenTheme"
android:theme="@style/Theme.Bullseye"
installSplashScreen()