Is there a way to create a Dropdown Spinner for Android 2.3.3? I am using ActionbarSherlock.
Here is an Example of what I mean:

Thanks
|
Is there a way to create a Dropdown Spinner for Android 2.3.3? I am using ActionbarSherlock. Here is an Example of what I mean:
Thanks |
|||||
|
|
As it stands, you're in luck. It can be done with ActionBarSherlock and it works with versions pre-4.0 . However, I'm not 100% sure Jake Wharton will want us to use it like this, since it's not exactly "public api", AFAIK (I've meant to ask). Anyway, you have to first create your own class to extend from the ActionBarSherlock class:
To include it in a layout:
Now you have to create a custom
YMMV, esp. regarding the themes. |
|||
|
|
|
I've met the same problem and my solution is quite simple. (I didn't use HoloEverywhere.) The idea comes from the ABS sample project, whose drop-down menu can be displayed on pre-4.0 devices as well by using a submenu. So, my idea is using a submenu to disguise the 3-dot icon. Here's the code:
Since the "More" menu doesn't have a MenuItem.SHOW_AS_ACTION_WITH_TEXT attribute, so the word "More"(or whatever you named) will actually not be displayed on the action bar. The only displayed icon R.drawable.ic_menu can be copied from ABS source code res/drawable-xxdpi folders named "abs__ic_menu_moreoverflow_normal_holo_dark.png", which is the so-called 3-dot icon. And the R.menu.activity_main is your menu xml. It works! |
|||
|
|