- Android 8.0.0——Only fullscreen o
- Android 8.0.0 Only fullscreen op
- Android O : Only fullscreen opaq
- 8.0系统Only fullscreen activities
- Android O 适配问题 “Only fullscreen
- Android 8.0系统 Only fullscreen o
- Android8.0 Only fullscreen activ
- android8.0采坑 Only fullscreen opa
- 那些年Android上遇到的那些坑
- Android友盟qq分享报错Only fullscreen o
原因1:
<activity
android:name=".MainActivity"
android:screenOrientation="portrait" <!-- 垂直锁定 -->
android:theme="@style/AppAppTheme">
原因2:
<style name="AppAppTheme" parent="AppTheme">
<!-- 任选一个都会报错 -->
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowSwipeToDismiss">true</item>
<item name="android:windowIsFloating">true</item>
</style>
解决方案:根据情况去掉垂直锁定,或者相关主题属性。
网友评论