3

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

    <style name="Theme.App.Starting" parent="Theme.SplashScreen">
        <item name="windowSplashScreenBackground">@color/black_accent</item>
        <item name="windowSplashScreenAnimatedIcon">@drawable/circle_orange</item>
        <item name="windowSplashScreenAnimationDuration">200</item>
        <!-- Set the theme of the Activity that directly follows your splash screen. -->
        <!-- Required -->
        <item name="postSplashScreenTheme">@style/Theme.MyApplication</item>
    </style>
Tonton
  • 113
  • 2
  • 9

1 Answers1

0

There is no such property yet but you can add yours by converting your text to drawable and then placing your logo + text drawable inside <item name="windowSplashScreenAnimatedIcon">@drawable/circle_orange</item>, this is not a proper solution but you can consider this as an option.

Assad khan
  • 161
  • 2
  • 9