The android ActionBar may split into a top and bottom bars if activity's parameter "uiOptions" is set to "splitActionBarWhenNarrow", note this parameter is only valid in ICS.

Honeycomb has introduced a new approach to multi-select list items using action bar. When a item is under press & hold the list becomes into a multi-selection mode and the actionbar bar may be used to accomplish some actions. The actionbar setup is inherited from the list activity, i.e., if the activity has a split action bar the multi-selection will have too, and if the activity has only the top bar, so, the multi-selection will be compliant with that.

The question is, is it possible to have only a top action bar in the activity and when the list turns into multi-selection mode programmatically split the actionbar?

Thanks!

link|improve this question
I too would LOVE for it to have this functionality. – Christopher Perry Feb 12 at 18:27
feedback

2 Answers

up vote 5 down vote accepted

No, you cannot switch between split and non-split action bars on the fly.

The setter counterpart to android:uiOptions is on Window, not Activity. Window#setUiOptions is the method and the flag to use is ActivityInfo#UIOPTION_SPLIT_ACTION_BAR_WHEN_NARROW.

However this isn't going to do what you want. Split action bar when narrow must be specified as the window is first configured before the window decor is initialized. In other words, once the window has been displayed (or even once you've called setContentView) it's too late to change it.

This was a conscious decision by the Android UX team. Action modes (including selection modes) are meant to mirror the configuration of the action bar on the current activity. This gives the user a single place to look for currently valid actions within the same activity.

link|improve this answer
Yeah, but my users seem to be having a hard time finding the contextual actions during the action mode as most of them spill into the overflow menu because of the "X Selected" text informing them of how many items they have currently selected. – Christopher Perry Feb 12 at 18:31
If that particular action mode is a significant part of your UI and presents many options, you might consider using the split bar full-time for that activity. – adamp Feb 13 at 22:48
feedback

I don't believe so. I do not see anything in Activity that would serve as a setter counterpart to android:uiOptions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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