0

このように動作するスパークコンポーネントはありますか?

スピナー リストとコンボ ボックスを試してみましたが、どちらもアプリでうまく表示されませんでした。

サンプルコードを投稿してください。

                                        

       

4

1 に答える 1

0

RadioButtonRenderer と PopUpSkin 2 でFlextras Mobile DropDownListを使用できます。

ここで遊ぶことができます。独自のサンプルをテストするために使用できるコードを次に示します。ライブラリ パスにモバイル コンポーネント 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>

スクリーンショットにあるものの近似値が得られます。

于 2012-08-08T16:23:30.540 に答える