方法一:
始终为竖屏
//竖屏
android:screenOrientation="portrait"
//横屏
android:screenOrientation="landscape"
方法二
禁止手机app横竖屏幕转换,只需在根目录下的 config.xml 中添加如下内容
//portrait纵向 landscape 横向 default 默认转屏
<preference name="orientation" value="portrait" />
方法一:
//竖屏
android:screenOrientation="portrait"
//横屏
android:screenOrientation="landscape"
方法二
禁止手机app横竖屏幕转换,只需在根目录下的 config.xml 中添加如下内容
//portrait纵向 landscape 横向 default 默认转屏
<preference name="orientation" value="portrait" />