Java – Stop the splash screen below the navigation bar

Stop the splash screen below the navigation bar… here is a solution to the problem.

Stop the splash screen below the navigation bar

I want to use this splash screen, but it’s always below the navigation bar.

Splash img

How do you force the navigation bar to fit on the screen while keeping it?

   <style name="splashScreenTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen">

<item name="android:windowBackground">@drawable/splash</item>

</style>

Solution

Find a solution

 <item name="android:windowBackground">@drawable/splash</item>

to

 <item name="android:background">@drawable/splash</item>    

Related Problems and Solutions