停止闪屏以进入导航栏下方
我想使用此初始屏幕,但它一直位于导航栏下方。
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>
相关文章