gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:02:44 24 4
gpt4 key购买 nike

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

我该怎么做?

最佳答案

您可以选择以下两种方式之一。

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
}
}
});

关于android - 在选择项目之前设置微调器的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10867039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com