Android O : Only fullscreen opaq
作者:
_凌浩雨 | 来源:发表于
2018-10-29 17:06 被阅读10次异常

异常.png
解决方法
- 找到报此异常的Activity,将主题中的将windowIsTranslucent属性设置为false
- 并设置windowDisablePreview属性为ture
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowFullscreen">true</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowDisablePreview">true</item>
</style>
</resources>
本文标题:Android O : Only fullscreen opaq
本文链接:https://www.haomeiwen.com/subject/wiabtqtx.html
网友评论