Get Value Spinner in Android

118 Views Asked by At

I want to get value from spinner with item like this.

11 Ina | 12 Ani | 13 Nia

I used two string for 11 and Ina. This is example for show my spinner: spinner.add(stringone+stringtwo)

Can I get value when click Ina, only 11?

1

There are 1 best solutions below

2
On

Well, assuming that your input works fine, you can use the split method to take only the input that you need.

 `String selectedItem =` `mySpinner.getSelectedItem().toString().subString(beginIndex,endIndex);`

Note that beginIndex is inclusive and endIndex is exclusive. In your case, subString(0,2) will return you 11 alone.

You can also go for split() method if you want to further customise breakdown of the selected item. Refer this for more details.