I can't seem to figure out how to make the spinner turn white:

What style do I need to apply to get it to change to white? I'm using ActionBarSherlock.
Relevant code:
public void onCreate(Bundle savedInstanceState)
{
....
// Just a class to hold description/value pairs
DescriptionValuePair[] pastdays = new DescriptionValuePair[] {
new DescriptionValuePair("Past 30 days", "30"),
new DescriptionValuePair("Past 60 days", "60"),
new DescriptionValuePair("Past 90 days", "90"),
};
ArrayAdapter adapter_pastdays = null;
ActionBar bar=getSupportActionBar();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
adapter_pastdays = new ArrayAdapter(bar.getThemedContext(), R.layout.sherlock_spinner_item, pastdays );
}
else {
adapter_pastdays = new ArrayAdapter(this, R.layout.sherlock_spinner_item, pastdays );
}
adapter_pastdays.setDropDownViewResource(R.layout.sherlock_spinner_dropdown_item);
bar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
bar.setListNavigationCallbacks(adapter_pastdays, this);
}
Theme.Sherlock.Light.DarkActionBarfromTheme.Sherlock.Lightworks, but I don't want to change the theme, only the text color and corner arrow button to white. – Bryan Denny Dec 17 '12 at 18:50ArrayAdapter? The former version should work on all API levels. – Jake Wharton Dec 17 '12 at 18:57Theme.Sherlock.Light.DarkActionBarbut it may still be worthwhile if someone knows how to change just the drop down styles – Bryan Denny Dec 17 '12 at 19:40