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

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

    If you have to use setRequestedOrientation(), there is no way but sacrifice the windowIsTranslucent attribute on Android 8.0

    values\styles.xml for api level 25- (<8.0)

    
    

    values-v26\styles.xml for api level 26 (=8.0)

    
    

    values-v27\styles.xml for api level 27+ (>8.0)

    
    

提交回复
热议问题