我想从 xml 文件填充一个水平列表组件,宽度值将在 xml 文件内以及所有数据。
实际上我有这个代码:
<mx:Model id="epg" source="epg.xml" />
<mx:Component id="customRend">
<mx:Label text="{data.description}" width="{data.width}"/>
</mx:Component>
<mx:HBox x="82" y="104" width="1203" height="113" verticalAlign="middle">
<mx:HorizontalList width="100%" dataProvider="{epg.channel.program}"
itemRenderer="{customRend}" horizontalScrollPolicy="off">
</mx:HorizontalList>
</mx:HBox>
但它为列表中的所有元素设置相同的宽度。
你知道怎么做吗?
非常感谢。溴