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?
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?
Copyright © 2021 Jogjafile Inc.
Well, assuming that your input works fine, you can use the split method to take only the input that you need.
Note that
beginIndex
is inclusive andendIndex
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.