赞
踩
项目中使用测试机9.0系统,可以正常运行使用,测试同事手机为8.0系统,运行项目闪退.提示信息:
java.lang.IllegalStateException: Only fullscreen opaque activities can request orientation
意思是:只有全屏不透明Activity可以请求定向(google 翻译)
原因是Activity同时设置了 android:screenOrientation="" 和 <item name="android:windowIsTranslucent">true</item>。
解决方法:
1.删除AndroidManifest中相应Activity的 android:screenOrientation=""属性;或者删除相应Activity的theme中<item name="android:windowIsTranslucent">true</item>属性
2.如果两者都想使用,则创建values-v26 ->style.xml ,将对应theme中的android:windowIsTranslucent改为false.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。