在项目中,有时候可能会想使不同的页面显示的横竖屏也不一样,比如前一段我做的《广播体操》的项目,在首页面,肯定是想使页面为竖屏显示,但是播放页面要为横屏显示,即使用户的手机可以转屏,我们的播放页面也要是横屏显示。
有这样的需求,我们可以借助react-native的第三方组件,react-native-orientation。
官方文档:https://github.com/yamill/react-native-orientation
安装
1.如果项目正在运行,先关闭模拟器和终端;
2.执行安装命令:npm install --save react-native-orientation;
3.执行命令:rnpm link
4.现在使用的版本为1.15.0,link执行过之后,我们要需要手动配置
iOS:
1.用Xcode打开项目,右键点击项目名称,选择 “Add Files to ‘项目名’ “ ;
2.找到路径文件: 项目文件夹/node_modules/react-native-orientation/RCTOrientation ,将该文件添加上;
3.然后重新运行项目;
Android:
id="iframe_0.4470294276252389" src="data:text/html;charset=utf8,%3Cimg%20id=%22img%22%20src=%22https://static.dingtalk.com/media/lALOD2-A8M0CfM0DVQ_853_636.png_620x10000q90.jpg?_=0.9370278257410973%22%20style=%22border:none;max-width:1509px%22%3E%3Cscript%3Ewindow.onload%20=%20function%20()%20%7Bvar%20height%20=%20document.getElementById('img').height;window.parent.postMessage(%7BiframeId:'iframe_0.4470294276252389',height:height%7D,%20'http://www.cnblogs.com');%7D%3C/script%3E" frameborder="0" scrolling="no" style="margin: 0px; padding: 0px; border-style: none; border-width: initial; width: 1509px;">
用法
componentWillMount() {// 判断横竖屏幕var initial = Orientation.getInitialOrientation();if (initial === 'PORTRAIT') {//do stuff} else {//do other stuff}// 只允许竖屏Orientation.lockToPortrait();//只允许横屏Orientation.lockToLandscape(); } |
Functions
lockToPortrait()
lockToLandscape()
lockToLandscapeLeft()
lockToLandscapeRight()
unlockAllOrientations()
getOrientation(function(err, orientation)
返回的结果有 LANDSCAPE
PORTRAIT
UNKNOWN
PORTRAITUPSIDEDOWN
getSpecificOrientation(function(err, specificOrientation)
返回的结果有 LANDSCAPE-LEFT
LANDSCAPE-RIGHT
PORTRAIT
UNKNOWN
PORTRAITUPSIDEDOWN
官方文档中,还有一些事件的介绍,详细可以到官方文档上了解学习。