android8.0应用崩溃 Only fullscreen opaque activities can request orientation

项目中使用测试机9.0系统,可以正常运行使用,测试同事手机为8.0系统,运行项目闪退.提示信息:

java.lang.IllegalStateException: Only fullscreen opaque activities can request orientation

意思是:只有全屏不透明Activity可以请求定向(google 翻译)

原因是Activity同时设置了 android:screenOrientation="" 和 true

解决方法:

1.删除AndroidManifest中相应Activity的 android:screenOrientation=""属性;或者删除相应Activity的theme中true属性

2.如果两者都想使用,则创建values-v26 ->style.xml ,将对应theme中的android:windowIsTranslucent改为false.

 

你可能感兴趣的:(android,android常见问题)