java.lang.IllegalStateException: Only fullscreen opaque activities can request orientation

前端 未结 30 1651
难免孤独
难免孤独 2020-12-02 04:43

I am facing the problem while retrieving the contacts from the contact book in Android 8.0 Oreo java.lang.IllegalStateException: Only fullscreen opaque activities can reques

30条回答
  •  伪装坚强ぢ
    2020-12-02 05:26

    Please check the style of your Activity and make sure if you are not using any Translucent related things, change the style to alternate. So that we can fix this problem.

    android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
    

提交回复
热议问题