我正在开发一个 BlackBerry Phonegap 应用程序,我想将应用程序的方向设置为纵向。为此,我添加 <preference name="orientation" value="portrait" />
了 config.xml 文件,但它不起作用。
我正在使用 Phonegap 2.4.0 版。任何人都可以帮我设置方向吗?
我正在开发一个 BlackBerry Phonegap 应用程序,我想将应用程序的方向设置为纵向。为此,我添加 <preference name="orientation" value="portrait" />
了 config.xml 文件,但它不起作用。
我正在使用 Phonegap 2.4.0 版。任何人都可以帮我设置方向吗?
您需要在 config.xml 文件中像这样锁定方向
<feature id="blackberry.app">
<param name="orientation" value="portrait" />
</feature>
config.xml 的文档可在此处获得 - http://developer.blackberry.com/html5/documentation/param_element.html