How to disable landscape mode in React Native Android dev mode?

后端 未结 8 710
轻奢々
轻奢々 2021-01-31 13:03

I am new to android environment. I know iOS can be done in Xcode to disable device orientation. How can I disable landscape mode or any orientation mode in React Native Android?

8条回答
  •  萌比男神i
    2021-01-31 13:49

    Harry Moreno's comment is correct. Add it to android/app/src/main/AndroidManifest.xml in the 'activity' section. Also change

    android:configChanges="keyboard|keyboardHidden|orientation|screenSize"

    to android:configChanges="keyboard|keyboardHidden|screenSize"

    removing orientation so it doesn't conflict with the new line added, android:screenOrientation="portrait"

提交回复
热议问题