在我mxml部分中,
<s:layout.landscape>
<s:HorizontalLayout />
</s:layout.landscape>
<s:layout.portrait>
<s:VerticalLayout />
</s:layout.portrait>
在这些标签之后,我有几个组件,例如
<s:Button label="button 1"/>
<s:Button label="button 2"/>
我想做的是改变这些组件的顺序,一旦进入纵向或横向状态。例如,在纵向我有垂直布局按钮1后面跟着按钮2,在横向我有水平布局按钮2后面跟着按钮1。
1条答案
按热度按时间kcwpcxri1#
您可以使用
this.swapElements(button1,button2);
范例:-
希望这能帮上忙...