Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stopping Splash Screen to go under the navigation bar

I would like to use this splash screen but it keep going under the navigation bar.

Splash img

How can I force it to fit on the screen while keeping the navigation bar?

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

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

</style>
like image 972
Used Avatar asked Jul 21 '17 02:07

Used


1 Answers

Found one solution

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

to

 <item name="android:background">@drawable/splash</item>    
like image 117
Used Avatar answered Oct 21 '22 14:10

Used