是否有像这样的Flash制造商的微调器

时间:2012-08-08 15:42:25

标签: flash flex list spinner builder

是否有像这样的火花成分?

我尝试了一个微调器列表和一个组合框,他们在应用程序中都看起来不太好。

请发布示例代码。

1 个答案:

答案 0 :(得分:0)

你可以使用Flextras Mobile DropDownList,我们的RadioButtonRenderer和我们的PopUpSkin 2.

你可以玩它here。以下是一些可用于测试自己样本的代码;一旦您的库路径中有我们的移动组件SWC:

<?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" xmlns:flextras="http://www.flextras.com/mxml" >
<mx:Script>
 <![CDATA[
  import mx.collections.ArrayCollection;
  [Bindable] public var dataProvider : ArrayCollection = new ArrayCollection([
   {label:"United States of America")},
   {label:"Alabama")},
   {label:"Alaska")},
   {label:"Arizona")},
  ]);
 ]]>
</mx:Script>

<flextras:DropDownList id="mobileComp" 
 dataProvider="{this.dataProvider}" 
 width="100%" 
 skinClass="com.flextras.mobile.dropDownList.skins.DropDownListMobileSkin_PopUp_2"
 itemRenderer="com.flextras.mobile.shared.renderers.RadioButtonRenderer"
>
</flextras:DropDownList>
</s:Application>

它会给你一个近似截图中的内容。