异常
异常.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>
网友评论