赞
踩
这个问题是Android 版本的适配问题;
(横屏方向问题)
(1)去掉android:screenOrientation;
(主题 样式)
(2)android:windowIsTranslucent 改为false; 如果需要透明的设置加上android:windowDisablePreview =true;
在项目res目录下创建values-v26/styles.xml;
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppTheme.Splash" parent="AppTheme"> <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> <!-- 适配android手机系统8.0(api26),Only fullscreen opaque activities can request orientation --> <!--用背景图消除启动白屏--> <item name="android:windowBackground">@mipmap/qidongye</item> <item name="android:windowIsTranslucent">false</item> <item name="android:windowDisablePreview">true</item> </style> </resources>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。