选择的选项不会在Android设备中显示

时间:2016-02-04 02:12:03

标签: android css html5

任何人都知道为什么选择的属性不会在Android设备中显示。它在iOS中运行良好。

enter image description here

<select class="golden-mobile" >

 <option selected="selected" >More Info...</option>
 <option value="http://tshproperty.com/golden-visa/what-is-the-golden-visa/">What's Golden Visa?</option> 
 <option value="http://tshproperty.com/golden-visa/golden-visa-general-requirements/">General Requirements</option>
 <option value="http://tshproperty.com/golden-visa/spain/top-5-reasons-to-invest-in-spain/">Top 5 Reasons to Invest In Spain</option>
 <option value="http://tshproperty.com/golden-visa/spain/faq-spanish-golden-visa/">FAQs</option>
 <option value="http://tshproperty.com/golden-visa/spain/torrevieja/">Torrevieja</option>

</select>

1 个答案:

答案 0 :(得分:0)

您的string.xml将是:

<resources>
        <string name="country_prompt">Choose a country</string>

    <string-array name="country_arrays">
        <item>Malaysia</item>
        <item>United States</item>
        <item>Indonesia</item>
    </string-array>

</resources>

和你main_activity.xml

<Spinner
        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:entries="@array/country_arrays"
        android:prompt="@string/country_prompt" />

当您从Spinner中选择任何选项时,它将显示在那里。 并且你可以使用 onItemSelected(AdapterView父,View视图,int pos,长id)来触发任何Action。