在Sencha touch中锁定单个视图的方向

时间:2014-06-03 06:12:19

标签: android extjs sencha-touch sencha-touch-2 screen-orientation

我正在开发一个sencha touch应用程序,目前正在Android设备中部署它。 所以我想将其中只有一个视图的方向锁定为横向模式 而其余的意见将正常。有可能吗?

我可以通过编写

来锁定整个应用程序的横向模式
android:screenOrientation="landscape"

但如何为单一视图做到这一点?

1 个答案:

答案 0 :(得分:1)

如果您使用Cordova,可以使用插件:http://plugins.cordova.io/#/package/net.yoik.cordova.plugins.screenorientation

用法(从自述文件中复制):

// set to either landscape
screen.lockOrientation('landscape');

// allow user rotate
screen.unlockOrientation();

// access current orientation
console.log('Orientation is ' + screen.orientation);