Android action bar compat
Is it possible? On older devices (pre 3.0) the itens that don't fit the action bar are only shown when the menu key is pressed, I want these itens to be grouped in the actionbar's overflow menu.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

The action overflow menu is only available when there is no hard menu button available on the device. I found this stated in the Framework Topics under User Interface > Action Bar, check out the 3rd bullet here.

There is an action bar library written by Jake Wharton called ActionBarSherlock. Perhaps this is able to supply you with an action overflow menu style even when on older devices (which include a hard menu button), however I have not looked into this.

Edit: ActionBarSherlock 4.0 (currently a release candidate) has functionality built in to force action overflow. If you want to extend the ActionBarCompat example yourself, you could take a look on github to get an idea how Jake implemented it. I would suggest just looking into using his library all together, as it is very well done.

If you choose to use Jake's library, look into setting up the Activity theme as @style/Theme.Sherlock.ForceOverflow to force the overflow menu on older devices.

link|improve this answer
You didn't read the question very carefully. He's using an official android action bar library to get the backwards and forwards compatibility. He wants to force the overflow option below Android 4.0, not turn his old menu into a functioning menu on ICS. – Eric Novins Feb 12 at 9:02
2  
@EricNovins, ABS library offers what he is looking for. If he chooses not to use the library, if offers a direction for him to extend ActionBarCompat in his own way. – esilac Feb 21 at 15:36
I wouldn't ever suggest to ditch the library completely. That's a ton of recoding for one function. Not a quality answer IMO – Eric Novins Feb 22 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.