How can I make spinner in action bar to have different item as selected (shown in the action bar top) then the one in the drop down list? Example is google mail with spinner in
it might be a bit too late, but the tutorial with commented codes can be found on the Android developer website: http://developer.android.com/guide/topics/ui/actionbar.html#Dropdown
the basics is that during the activity OnCreate you have to set it to be a list:
getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
and then create a spinner adapter and a couple of callbacks just like you would do with a normal spinner.
hope it helps