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

后端 未结 8 613
轻奢々
轻奢々 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条回答
  •  太阳男子
    2021-01-31 14:00

    Just open your android/app/src/main/AndroidManifest.xml

    And add this line android:screenOrientation="portrait" and android:configChanges="keyboard|keyboardHidden|orientation|screenSize inside activity section

    It looks something like that

     
         .....your other stuff
     
    

    If it does not work than you can use react-native-orientation

提交回复
热议问题