首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

关于flex 四的新数据类型中英文对照

2012-11-08 
关于flex 4的新数据类型中英文对照Flex 4 new data type:ArrayListNote that the list based Spark contro

关于flex 4的新数据类型中英文对照
Flex 4 new data type:ArrayList

Note that the list based Spark controls can't directly use Array as it's dataProvider, the dataProvider must implement IList interface, which should be one of the reasons to introduce ArrayList

?

不知大家注意到没有,在Flex 4中的引入了一种新数据类型:ArrayList。它实现了IList接口,底层以Array作为数据源。本质上它是一种轻量级的 ArrayCollection,可以作为数据源绑定到控件上。但与ArrayCollection不同的是,它不能筛选和过滤数组。

看下面实例:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
?xmlns:s="library://ns.adobe.com/flex/spark"
?xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
?<fx:Declarations>
??<s:ArrayList id="al">
???<fx:Object type="Line"
??labelField="type" selectedIndex="0"/>
</s:Application>注意,基于list的Spark控件是不能直接以Array作为数据提供者的,一定要实现IList接口。这也应该是引入ArrayList数据类 型的原因之一。

热点排行