美文网首页我爱编程
cordova 禁止手机横竖屏切换

cordova 禁止手机横竖屏切换

作者: 哎呦程序猿 | 来源:发表于2018-04-10 14:03 被阅读122次

方法一:


始终为竖屏
//竖屏
android:screenOrientation="portrait" 
//横屏
android:screenOrientation="landscape"

方法二
禁止手机app横竖屏幕转换,只需在根目录下的 config.xml 中添加如下内容

//portrait纵向 landscape 横向 default 默认转屏
<preference name="orientation" value="portrait" />

相关文章

网友评论

    本文标题:cordova 禁止手机横竖屏切换

    本文链接:https://www.haomeiwen.com/subject/dctnhftx.html