我正在使用 Kendo UI(Appbuilder,cordova)开发 HTML5\JS 应用程序。这就是问题所在:如何手动设置方向(横向\纵向)。谢谢!
问问题
732 次
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);
}
否则,请查看这些可能的重复项:
于 2014-07-11T13:07:05.150 回答