本文介绍了获取微调所选项目的文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获得微调所选项目的文本?
我得对我的微调所选项目的文本时,我点击保存按钮。我需要的文本而不是指数。
解决方案
微调微调=(微调)findViewById(R.id.spinner);
字符串文本= spinner.getSelectedItem()的toString()。
How to get spinner selected item's text?
I have to get the text on the item selected in my spinner when i click on the save button.i need the text not the Index.
解决方案
Spinner spinner = (Spinner)findViewById(R.id.spinner);
String text = spinner.getSelectedItem().toString();
这篇关于获取微调所选项目的文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!