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

前端 未结 30 1744
难免孤独
难免孤独 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:45

    I recently faced the issue and here's the solution.

    No need to change the screen orientation parameter which you set at android manifest file.

    Just add two folders in

    res>values
    as  res>values-v26 
    and res>values-v27
    

    Then copy your styles.xml and themes.xml file there.

    and change the following parameters from TRUE to FALSE.

    true
    
    false
    

    It will work.

    A common bug of Android 8.0

提交回复
热议问题