正如 jalopaba 在这里演示的那样,我已经创建了一个新类:如何获得 Spinner 的选定值?
public class MyItemSelectedListener implements OnItemSelectedListener {
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
String selected = parent.getItemAtPosition(pos).toString();
}
public void onNothingSelected(AdapterView parent) {
// Do nothing.
}
}
并将其注册到原始类中的微调器:
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
但是,我仍然不能使用该选定的字符串来在同一个类中填写我的代码:
textView.setText(selected);
反正我是这个Android的新手,所以这个问题对你们中的一些人来说可能太愚蠢了