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 am working on an android project and I am using a spinner which uses an array adapter which is populated from the database.

I can't find out how I can set the selected item programmatically from the list. For example if, in the spinner I have the following items:

  • Category 1
  • Category 2
  • Category 3

How would I programmatically make Category 2 the selected item when the screen is created. I was thinking it might be similar to c# I.E Spinner.SelectedText = "Category 2" but there doesn't seem to be any method similar to this for Android.

share|improve this question

2 Answers

up vote 23 down vote accepted

Use the following: spinnerObject.setSelection(INDEX_OF_CATEGORY2).

share|improve this answer
5  
Thanks, this worked great, while I was doing this I also found a way of getting the index without needing to loop through the adapter. I used the following mySpinner.setSelection(arrayAdapter.getPosition("Category 2")); – Boardy Jun 17 '12 at 16:01
public static void SelectSpinnerItemByValue(Spinner spnr, long value)
{
    SimpleCursorAdapter adapter = (SimpleCursorAdapter) spnr.getAdapter();
    for (int position = 0; position < adapter.getCount(); position++)
    {
        if(adapter.getItemId(position) == value)
        {
            spnr.setSelection(position);
            return;
        }
    }
}

You can use the above like:

SelectSpinnerItemByValue(spinnerObject, desiredValue);

& ofcource you can also select by index directly like

spinnerObject.setSelection(index);
share|improve this answer
An error with this code is that @Boardy want the selection of Category 2 which I suppose is a String (assuming he tried using Spinner.SelectedText = "Category 2") but the above code is for a long. – Arun George Jun 17 '12 at 15:47
He is populating the categories from the database there must be an ID for each category. – Yaqub Ahmad Jun 17 '12 at 15:50

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.