0

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

4

2 回答 2

0

In AppBuilder, in the Properties -> General section, you can choose the supported device orientations. Just uncheck "portrait" and your app will only run in landscape mode.

于 2014-07-11T12:28:17.693 回答
0

如果您不想在 Rob 回答时切换 AppBuilder 中的设置,您可以在Cordova config.xml 文件中对其进行编辑:

<preference name="Orientation" value="landscape" />

此 Javascript 可能有效(取自此处):

function shouldRotateToOrientation(interfaceOrientation) {
    return (3 === interfaceOrientation);
}

否则,请查看这些可能的重复项:

Cordova iOS 在单页上将屏幕方向更改为横向

Cordova 3.x 在运行时强制屏幕方向 IOS

于 2014-07-11T13:07:05.150 回答