0

Is it possible to add a text below the logo in splash screen while using Splash Screen API? I did not find any property regarding "text" in Theme.SplashScreen.

I have also tried the following link to solve the problem but that not helped to me. Is anyother way to achieve this requirement.expectation Text with Splashscreen API

1 Answers1

0

There is no support for text in the SplashScreen api as of now.

You can achieve what you want by

  1. creating a custom splash screen activity as the launcher activity.
  2. Set the colors and icons of the SplashScreen api to transparent by editing Theme.SplashScreen.

Result: You will have two splash screens one from SplashScreen api and the custom splash screen, since the former is transparent it will not be reflected in the app.

Vishnu S Dharan
  • 100
  • 1
  • 7
  • But when we upload the App Playstore crawler detect throws error like custom splash screen that is shown in your app after the system splash screen. – Sakthivel K Jun 22 '23 at 04:58
  • Don't use the word splash for naming the splash activity, use LaucherActivity or something else. – Vishnu S Dharan Jun 22 '23 at 05:06