Can anyone please tell me how to add multiple spinners with only one onItemSelected().
Right now i am doing something like this:
Spinner s[] = new Spinner[5];
I am using this for displaying hierarchy in spinners.
For index = 0; it works fine. But problem arises with next index as there is only one onItemSelected().
What can you suggest on this?
Note: I am coding to have spinners created dynamically and filled with corresponding cursor. Cursor is not an issue so far.
Thanks!
1 Answer