0

ユーザーをあるビューから別のビューに移動させるsenchatouchを使用した基本的なアプリがあります。何らかの理由でシミュレーターを横向きに変更しても、そのレイアウトは同じままで、特徴を示しています。この動作を変更するにはどうすればよいですか?

4

1 に答える 1

0

Viewport に orientationchange イベントを追加します。

initialize: function () {
    // Add a Listener. Listen for [Viewport ~ Orientation] Change.
    Ext.Viewport.on('orientationchange', 'handleOrientationChange', this, {buffer: 50 });
    this.callParent(arguments);
},
handleOrientationChange: function(){
    console.log('handleOrientationChange');
    // Execute the code that needs to fire on Orientation Change.
}
于 2013-03-11T06:24:36.577 に答える