如何获得转轮选定项目的文本?

当我点击保存按钮时,我必须在我的旋转器中选择的项目上获得文本。 我需要的是文本,不是索引。


当前回答

Spinner返回数组的整数值。必须根据索引检索字符串值。

Spinner MySpinner = (Spinner)findViewById(R.id.spinner);
Integer indexValue = MySpinner.getSelectedItemPosition();

其他回答

您必须使用索引和适配器来查找您拥有的文本

请看Spinner的例子

public class MyOnItemSelectedListener implements OnItemSelectedListener {

    public void onItemSelected(AdapterView<?> parent,
        View view, int pos, long id) {
      Toast.makeText(parent.getContext()), "The planet is " +
          parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();
    }

    public void onNothingSelected(AdapterView parent) {
      // Do nothing.
    }
}
TextView textView = (TextView) spinActSubTask.getSelectedView().findViewById(R.id.tvProduct);

String subItem = textView.getText().toString();

也可以使用String.valueOf()以更安全的方式实现,就像这样

Spinner sp = (Spinner) findViewById(R.id.sp_id);
String selectedText = String.valueOf(sp.getSelectedItem());

而不会在一切失控时让应用程序崩溃。 其安全性背后的原因是具有处理空对象作为参数的能力。文档上说

如果参数为null,则字符串等于"null";否则,返回obj.toString()的值。

这里有一些保险,以防有一个空的Spinner,例如,当前选择的项目必须转换为字符串。

对于基于CursorAdapter的旋流器:

获得所选项目id: spinner.getSelectedItemId() 从数据库中获取项目名称,例如: getCountryName(int pId){ 游标cur = mDb。查询(表、新String [] {COL_NAME} COL_ID + = ?”,新String [] {pId + " "},空,空,空); 字符串ret = null; 如果(cur.moveToFirst ()) { ret = cur.getString(0); } cur.close (); 返回受潮湿腐烂; }

TextView textView = (TextView)mySpinner.getSelectedView();
String result = textView.getText().toString();