在创建 ViewStack 时遇到问题,在 ViewStack 中带有转发器以及其他组件(即 vBox)。中继器被放置在视图的底部。尽管中继器列在其他组件之前,但它位于底部。
有没有一种解决方法可以让我在其他组件之前绘制中继器?
我用谷歌搜索了这个,其他人在另一个网站上问了同样的问题,但没有人回答。我正在粘贴他们帖子中的示例代码。最后绘制中继器。
谢谢
这是一个例子:
<mx:ViewStack id="viewStack" width="100%" height="100%" backgroundColor="#FFFFFF"
backgroundAlpha="1" paddingLeft="5" paddingRight="5" paddingBottom="5">
<mx:Repeater id="editorsRP" dataProvider="{dynamicFields}"
repeatEnd="organizeViewStack();" width="100%" height="100%">
<editor:DynamicFieldEditor label="{FieldGroup(editorsRP.currentItem).name}"
width="100%" height="100%" fields="{FieldGroup(editorsRP.currentItem).fields}" dataProvider="{details}" />
</mx:Repeater>
<editor:NotesEditor id="notesEditor" width="100%" height="100%" label="Notes"
enabled="false" notesProvider="{attachment}" />
</mx:ViewStack>