2012-01-04 20 views
2

我已經張貼在類似的問題: sencha touch forum加載面膜方向

但沒有答案了:(

我現在面臨的裝載面具取向問題,當我轉動我的設備爲橫向(從縱向。)它不會重新計算其位置以全屏我使用Galaxy Tab的運行我的應用程序

下面是截圖:。 enter image description here

我不知道這是否是某種sencha bug ..
有人可以幫我解決這個問題嗎?

在此先感謝

+0

你可以將屏幕截圖現在),並請詳細說明 「問題」 – doNotCheckMyBlog 2012-01-04 02:01:04

回答

0

我還沒有測試過這個,但我希望這會有所幫助。

要麼

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

或者

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