Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
I don't understand, spinner or array position are not enough to use as an id? – ferostar Apr 26 '11 at 14:53
It's an ID specific to the item in the Spinner. It could be 1; it could be 93847549387925187. It's a database primary key. – Andrew Apr 26 '11 at 14:57
Andrew i have the same problem...if you have got the Answer to your question than please help me to.... – Haresh Chaudhary Mar 31 '12 at 7:38

3 Answers

up vote 7 down vote accepted

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.

Spinner spinner = (Spinner) findViewById(R.id.spinner);
ArrayAdapter<MyObject> adapter = ... // initialize the adapter
adapter.setDropDownViewResource(android.R.layout.some_view);
spinner.setAdapter(adapter);

and when item is selected

public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
    MyObject selected = parent.getItemAtPosition(pos);
    // save any data relevant with selected item   
}

If you are storing your data in db you can use CursorAdapter and in onItemSelected to fetch the selected item id from the cursor.

share|improve this answer
If I use a CursorAdapter, how do I tell it that the "name" column is for the text that shows up in the list? – Andrew Apr 26 '11 at 15:22
You need to use SimpleCursorAdapter. There is pretty good example in this article dcpagesapps.com/developer-resources/android/… – Mojo Risin Apr 26 '11 at 19:15

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.

share|improve this answer

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

share|improve this answer
i dont think so... if you have array of objects you want to display in spinner, you can easier access selected ID from this array of objects, than accessing value in another spinner. – smitalm Oct 26 '12 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.