我正在使用Kendo UI(Appbuilder,cordova)开发HTML5 \ JS应用程序。 这是问题所在: 如何手动设置方向(横向\纵向)。 谢谢!
答案 0 :(得分:0)
在AppBuilder中,在属性 - >常规部分,您可以选择支持的设备方向。只需取消选中“纵向”,您的应用只会以横向模式运行。
答案 1 :(得分:0)
如果你不想在Rob回答的情况下切换AppBuilder中的设置,你可以在Cordova config.xml file编辑它:
<preference name="Orientation" value="landscape" />
此Javascript可能有效(taken from here):
function shouldRotateToOrientation(interfaceOrientation) {
return (3 === interfaceOrientation);
}
否则,请参阅以下可能的重复项:
Cordova iOS Change Screen Orientation To Landscape on a Single Page