How To Get Spinner Value Without Tag
I'm using the spinner, and I want to get the text selected for the user so I'm using String datacat = categorySpinner.getSelectedItem().toString() the problem is that this senten
Solution 1:
Assuming selectedview is EditText.
Stringdatacat=((EditText) categorySpinner.getSelectedView()).getText().toString();
Post a Comment for "How To Get Spinner Value Without Tag"