I have an array of Strings I'm populating a Spinner object with. However, I'd like to attach an ID to each element of the Spinner, so when the user selects an item, I have its ID to use to save to some other piece of data. How can I do this?
|
|
What do you mean by id. You can use ArrayAdapter to populate the Spinner. When item is selected just get the element from the adapter and save the data you want.
and when item is selected
If you are storing your data in db you can use CursorAdapter and in onItemSelected to fetch the selected item id from the cursor. |
|||||
|
|
I don't think you can attach an arbitrary ID to elements of a text array resource, if that's what you're using. I think the simplest way to attach such an ID would be to either hard-code (if you're using a static text resource) or dynamically build (if you get the strings at runtime) a mapping from (String position in array)->(primary key). EDIT: On the other hand, Mojo Risin has a point - you should check to see if the CursorAdapter API already does what you need for you. |
|||
|
|
|
I think The best solution is to add one more spinner and fill it with the ids but make the visibility of it to gone |
|||
|