gpt4 book ai didi

java - 微调器 - 通过单击在微调器中添加内容

转载 作者:行者123 更新时间:2023-11-29 22:25:43 25 4
gpt4 key购买 nike

我想做的是通过单击在微调器中添加一些东西,然后单击微调器中出现的“添加选项”。我是 android 开发的新手。有人可以帮忙吗?

谢谢

最佳答案

您可以创建一个适配器(例如 ArrayAdapter ),然后使用 Spinner.setAdapter() 方法将其绑定(bind)到您的微调器。

在您的 onItemSelectedListener 中覆盖 Adapter.onItemSelected() 方法后,您可以使用这样的函数(如果您已经实现了您的 onItemSelectedListener 在您声明适配器的同一类中,称为 arrayAdapter):

public void onItemSelected(AdapterView<?> parent,
View view, int pos, long id) {

if (parent.getItemAtPosition(pos).toString().equals("Add Item")) {
arrayAdapter.add(new object()); //object is what your array contains
}
}

看看微调器 tutorial对于中间步骤。

关于java - 微调器 - 通过单击在微调器中添加内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5999056/

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