我有这个微调器,我想将所选项目变为字符串,我这样做:
Spinner to;
String string = to.getSelectedItem().toString;
我的问题是如何将“string”转换回spinner小部件?
答案 0 :(得分:0)
这样更好:
How to set selected item of Spinner by value, not by position?
这也有效:(我的回答) 您创建一个带有数组(列表)的微调器。如果你想将Spinner设置为你从Spinner本身得到的字符串,这样的东西就可以了:
for (int i = 0; i < array.size(); i++) {
if (array.get(i).equals(string) {
spinner.setSelection(i)
}
}