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

后端 未结 8 758
轻奢々
轻奢々 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:03

    As @morenoh149 stated above the property name and value to do this is android:screenOrientation="portrait". React Native generates a file called AndroidManifest.xml in your project directory under the Android folder. Within that xml file under the tag manifest/application/activity you would add the line android:screenOrientation="portrait"

    An example is shown below

    
    
    
      
        
            
            
        
      
      
    
    

提交回复
热议问题