Stopping Splash Screen to go under the navigation bar(停止闪屏以进入导航栏下方)
问题描述
我想使用此初始屏幕,但它一直位于导航栏下方。
Splash img
如何在保留导航栏的同时强制它适应屏幕?
<style name="splashScreenTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen">
<item name="android:windowBackground">@drawable/splash</item>
</style>
推荐答案
找到一个解决方案
<item name="android:windowBackground">@drawable/splash</item>
至
<item name="android:background">@drawable/splash</item>
这篇关于停止闪屏以进入导航栏下方的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!