Kendo UI + Cordova。定位问题。

时间:2014-07-10 14:47:11

标签: cordova mobile kendo-ui screen-orientation telerik-appbuilder

我正在使用Kendo UI(Appbuilder,cordova)开发HTML5 \ JS应用程序。 这是问题所在: 如何手动设置方向(横向\纵向)。 谢谢!

2 个答案:

答案 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

Cordova 3.x forcing screen orientation at run-time IOS