Flashbuilder 4.5 DropDown Mobile List?

Hi, I am currently developing a mobile application in Flashbuilder 4.5 Pro. However, I am having problems because I cannot add a drop-down list to my application and work with it properly. I have created the code below, and this effectively creates a drop-down list and fills it with elements, however, when the user clicks on the element, he is not selected in the field.

This also happens when I test it on my machine, and the only way to select an item is to click on the list and then use the down arrow on the keyboard, which I cannot do in the application. Can someone please help me ????

<s:DropDownList id="sex_drpdown" width="150" height="61.35" labelField="value" fontSize="30" change="sex_drpdown_changeHandler(event)">
            <s:ArrayCollection>
                <fx:String>Male</fx:String>
                <fx:String>Female</fx:String>                       
            </s:ArrayCollection>
        </s:DropDownList>
+3
source share
5 answers

, Flex Mobile DropDownList, Flextras.

DropDownList touch mouse , DropDownList.

Flex Mobile DropDownList. , . , , .


: Flextras Apache; .

+3

, Combobox:

<s:ComboBox change="changeHandler()">
   <s:ArrayCollection>
      <fx:String>Male</fx:String>
      <fx:String>Female</fx:String>                       
   </s:ArrayCollection>
</s:ComboBox>
+1

DropDownList . - . Adobe "" , , Adobe ( ). , .:)

+1

DropDownList

0

dropDownList flex mobile, .

Our solution was to create a list instead. It is also used in many Android applications and even the adobe sample fitting: http://www.adobe.com/devnet/flex/samples/sales-dashboard-application.html
solves the problem this way.

0
source

All Articles