美文网首页
Android 8.0.0——Only fullscreen o

Android 8.0.0——Only fullscreen o

作者: NothShow | 来源:发表于2019-07-31 17:47 被阅读0次
    Activity#onCreate isTranlucentOrFloatin

    原因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>

    解决方案:根据情况去掉垂直锁定,或者相关主题属性。

    相关文章

      网友评论

          本文标题:Android 8.0.0——Only fullscreen o

          本文链接:https://www.haomeiwen.com/subject/cfntdctx.html