加载蒙版方向

时间:2012-01-04 01:52:52

标签: sencha-touch

我发布了类似的问题: sencha touch forum

但尚无答案:(

当我将设备旋转到横向(从肖像)时,我在加载蒙版中遇到方向问题。它不会重新计算其全屏位置。我正在使用Galaxy Tab来运行我的应用程序。

以下是截图: enter image description here

我不知道它是否是某种形状的虫子..
有人可以帮助我摆脱这种情况吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

我没有测试过这个,但我希望这会有所帮助。

无论

listeners : {
    orientationchange : function(context, orientation, width,height) {
        mask.hide();
        mask.show();
    }
}

或者

listeners : {
    orientationchange : function(context, orientation, width,height) {
        panel.docomponentlayout();
    }
}