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'm using ActionBarSherlock for ActionBar compatibility.

Everything works great except for the navigation dropdown spinner.

Testing with the emulator on Android 2.3 and below, I get a radio button on the spinner and also the text color is black.

It works well on Android 4+.

How can I remove the button and set the correct colors? Thanks.

Example image:

ActionBarSherlock on Android 2.33 emulator

share|improve this question

2 Answers

up vote 4 down vote accepted

Are you setting the correct dropdown items?:

getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
navigationItems = Arrays.asList(getResources().getStringArray(R.array.navigation_array));
setupNavigationStrings();
navigationAdapter = new ArrayAdapter<String>(context, com.actionbarsherlock.R.layout.sherlock_spinner_item, navigationItems);
navigationAdapter.setDropDownViewResource(com.actionbarsherlock.R.layout.sherlock_spinner_dropdown_item);
getSupportActionBar().setListNavigationCallbacks(navigationAdapter, this);
share|improve this answer

Found it. I should have used R.layout.sherlock_spinner_dropdown_item for the spinner.

share|improve this answer

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.