美文网首页
Android O : Only fullscreen opaq

Android O : Only fullscreen opaq

作者: _凌浩雨 | 来源:发表于2018-10-29 17:06 被阅读10次

    异常

    异常.png

    解决方法

    1. 找到报此异常的Activity,将主题中的将windowIsTranslucent属性设置为false
    2. 并设置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