在选择项目之前设置微调器的文本

时间:2012-06-03 00:40:27

标签: android spinner oncreate settext

我有一个包含三个项目的微调器,我使用XML字符串数组资源来提供它。当您打开活动时,微调器通常会显示数组列表中的第一个项目。我想更改它并在选择项目之前在微调器中显示“选择一个”文本。

我该怎么做?

2 个答案:

答案 0 :(得分:10)

你可以采取以下两种方式之一。

1)添加“Select One”作为xml中的第一项,并将您的侦听器编码为忽略该选项。

2)创建一个自定义适配器,将其作为第一行插入

修改

在你的资源中

<string-array name="listarray">
    <item>Select One</item>
    <item>Item One</item>
    <item>Item Two</item>
    <item>Item Three</item>
</string-array>

在你的onItemSelected监听器中:

spinnername.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
    public void onNothingSelected(AdapterView<?> parent) {
    }
    @Override
    public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
        if (pos == 0) {
        }else {
            // Your code to process the selection
        }
    }
});

答案 1 :(得分:1)

要为微调器设置默认文本,必须为微调器使用android:prompt=@string/SelectOne其中,在string.xml中定义了SelectOne。

示例:

<Spinner android:id="@+id/spinnerTest"  
 android:layout_marginLeft="50px"
 android:layout_width="fill_parent"                  
 android:drawSelectorOnTop="true"
 android:layout_marginTop="5dip"
 android:prompt="@string/SelectOne"
 android:layout_marginRight="30px"
 android:layout_height="35px" 
/>