我的环境使用的是 Sencha-touch & PhoneGap。我可以用垂直锁定方向吗?我不希望用户使用水平方向进行操作。
launch: function() {
// Destroy the #appLoadingIndicator element
Ext.fly('appLoadingIndicator').destroy();
// Initialize the main view
Ext.Viewport.add(Ext.create('ebook.view.Main'));
},
我需要在午餐功能上添加一些控制或配置吗?或者我需要将控件添加到 main.js。我的目的是我想锁定“垂直方向”的方向。有没有人可以帮助我。谢谢你。
其他参考:我在“package.json”上找到了以下代码,我尝试删除“landscapeLeft”和“landscapeRight”并重建它得到了相同的结果。我无法锁定用户方向。
/**
* @cfg {Array[String]} orientations
* @required
* This is orientations that this application can run.
*/
"orientations": [
"portrait",
"landscapeLeft",
"landscapeRight",
"portraitUpsideDown"
]