EventGet 50% off your ticket to MongoDB.local NYC on May 2. Use code Web50!Learn more >>
MongoDB Developer
Kotlin
plus
Sign in to follow topics
MongoDB Developer Centerchevron-right
Developer Topicschevron-right
Languageschevron-right
Kotlinchevron-right

Building Splash Screen Natively, Android 12, Kotlin

Mohit Sharma3 min read • Published Sep 23, 2021 • Updated May 12, 2022
AndroidRealmKotlin
Facebook Icontwitter iconlinkedin icon
Rate this code example
star-empty
star-empty
star-empty
star-empty
star-empty
In this article, we will explore and learn how to build a splash screen with SplashScreen API, which was introduced in Android 12.

What is a Splash Screen?

It is the first view that is shown to a user as soon as you tap on the app icon. If you notice a blank white screen (for a short moment) after tapping on your favourite app, it means it doesn't have a splash screen.

Why/When Do I Need It?

Often, the splash screen is seen as a differentiator between normal and professional apps. Some use cases where a splash screen fits perfectly are:
  • When we want to download data before users start using the app.
  • If we want to promote app branding and display your logo for a longer period of time, or just have a more immersive experience that smoothly takes you from the moment you tap on the icon to whatever the app has to offer.
Until now, creating a splash screen was never straightforward and always required some amount of boilerplate code added to the application, like creating SplashActivity with no view, adding a timer for branding promotion purposes, etc. With SplashScreen API, all of this is set to go.

Show Me the Code

Step 1: Creating a Theme

Even for the new SplashScreen API, we need to create a theme but in the value-v31 folder as a few parameters are supported only in Android 12. Therefore, create a folder named value-v31 under res folder and add theme.xml to it.
And before that, let’s break our splash screen into pieces for simplification.
Splash Screen placeholder
  • Point 1 represents the icon of the screen.
  • Point 2 represents the background colour of the splash screen icon.
  • Point 3 represents the background colour of the splash screen.
  • Point 4 represents the space for branding logo if needed.
Now, let's assign some values to the corresponding keys that describe the different pieces of the splash screen.

In case you want to use an app icon (or don't have a separate icon) as `windowSplashScreenAnimatedIcon`, you ignore this parameter and by default, it will take your app icon.
Tips & Tricks: If your drawable icon is getting cropped on the splash screen, create an app icon from the image and then replace the content of windowSplashScreenAnimatedIcon drawable with the ic_launcher_foreground.xml.
For windowSplashScreenBrandingImage, I couldn't find any alternative. Do share in the comments if you find one.

Step 2: Add the Theme to Activity

Open AndroidManifest file and add a theme to the activity.
In my view, there is no need for a new activity class for the splash screen, which traditionally was required. And now we are all set for the new Android 12 splash screen.
drawing
Adding animation to the splash screen is also a piece of cake. Just update the icon drawable with AnimationDrawable and AnimatedVectorDrawable drawable and custom parameters for the duration of the animation.
Earlier, I mentioned that the new API helps with the initial app data download use case, so let's see that in action.
In the splash screen activity, we can register for addOnPreDrawListener listener which will help to hold off the first draw on the screen, until data is ready.

Tips & Tricks: While developing Splash screen you can return false for addOnPreDrawListener, so the next screen is not rendered and you can validate the splash screen easily.

Summary

I really like the new SplashScreen API, which is very clean and easy to use, getting rid of SplashScreen activity altogether. There are a few things I disliked, though.
  1. The splash screen background supports only single colour. We're waiting for support of vector drawable backgrounds.
  2. There is no design spec available for icon and branding images, which makes for more of a hit and trial game. I still couldn't fix the banding image, in my example.
  3. Last but not least, SplashScreen UI side feature(theme.xml) is only supported from Android 12 and above, so we can't get rid of the old code for now.
You can also check out the complete working example from my GitHub repo. Note: Just running code on the device will show you white. To see the example, close the app recent tray and then click on the app icon again.
Github Repo link
Hope this was informative and enjoyed reading it.

Facebook Icontwitter iconlinkedin icon
Rate this code example
star-empty
star-empty
star-empty
star-empty
star-empty
Related
Tutorial

Serverless Development with Kotlin, AWS Lambda, and MongoDB Atlas


Aug 01, 2023 | 6 min read
Tutorial

Introduction to the Realm SDK for Android


Sep 23, 2022 | 4 min read
News & Announcements

Realm Kotlin 0.4.1 Announcement


Mar 22, 2023 | 5 min read
Article

Announcing the Realm Kotlin Beta: A Database for Multiplatform Apps


Oct 19, 2022 | 4 min read
Technologies Used
Languages
Technologies
Products
Table of Contents