DEV Community

Cover image for Building Splash Screen natively, Android 12, Kotlin
Mohit Sharma
Mohit Sharma

Posted on

Building Splash Screen natively, Android 12, Kotlin

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.


<style name="SplashActivity" parent="Theme.AppCompat.NoActionBar">

    <!-- Point 3-->
    <item name="android:windowSplashScreenBackground">#FFFFFF</item>

    <!-- Point 2-->
    <item name="android:windowSplashScreenIconBackgroundColor">#000000</item>

    <!-- Point 1-->
    <item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_realm_logo_250</item>

    <!-- Point 4-->
    <item name="android:windowSplashScreenBrandingImage">@drawable/relam_horizontal</item>
</style>
Enter fullscreen mode Exit fullscreen mode



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.

<activity
 android:theme="@style/SplashActivity">
</activity>
Enter fullscreen mode Exit fullscreen mode

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.

<item name="android:windowSplashScreenAnimationDuration">1000</item>
Enter fullscreen mode Exit fullscreen mode

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.

 private val viewModel: MainViewModel by viewModels()

 override fun onCreate(savedInstanceState: Bundle?) {
     super.onCreate(savedInstanceState)
     addInitialDataListener()
     loadAppView()
 }

 private fun addInitialDataListener() {
     val content: View = findViewById(android.R.id.content)
     // This would be called until true is not returned from the condition
     content.viewTreeObserver.addOnPreDrawListener {
         return@addOnPreDrawListener viewModel.isAppReady.value ?: false
     }
 }

 private fun loadAppView() {
     binding = ActivityMainBinding.inflate(layoutInflater)
     setContentView(binding.root)
Enter fullscreen mode Exit fullscreen mode

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. Do share your queries in the comment below.

Top comments (0)