In AndroidManifest: Expecting android:screenOrientation=“unspecified”

前端 未结 11 883
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 04:59

Android Studio 3.6.

I want my app to be always in portrait mode. So in my AndroidMainfest.xml:



        
11条回答
  •  遇见更好的自我
    2021-02-02 05:45

    Try putting the following in the activity tag

    android:configChanges="orientation"
    android:screenOrientation="portrait" 
    

提交回复
热议问题