I want to position some menu items to the left of Honycomb's ActionBar, but have found no documentation showing how to do this. It looks like it should be possible since the Contacts app has search to the immediate left of the navigation bar. Any idea as to how to set menu items to the left side?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 5 down vote accepted

The ActionBar has support for a custom layout between the application icon and the regular ActionBar icons. Example:

// Set the custom section of the ActionBar with Browse and Search.
ActionBar actionBar = getActionBar();
mActionBarView = getLayoutInflater().inflate(R.layout.action_bar_custom, null);
actionBar.setCustomView(mActionBarView);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
link|improve this answer
How do you determine if the custom view was clicked in the ActionBar? – CACuzcatlan Aug 19 '11 at 22:19
I tried this but it no longer shows my home icon. – CACuzcatlan Sep 21 '11 at 18:30
@CACuzcatlan, use actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME); – Juozas Kontvainis Nov 2 '11 at 15:13
feedback

Add an android:showAsAction="ifRoom" attribute to your <item> element in your menu XML resource. Or, use "ifRoom|withText" if you want the icon and text to appear, rather than just the icon.

Here is a sample application demonstrating this, that only runs on API Level 11 and higher. Here is a slightly more complicated version of that sample application, this time backwards-compatible.

link|improve this answer
This adds a menu item to the right side of the ActionBar, I'm looking to add menu items to the left. – Tom Bennett Mar 16 '11 at 17:43
@Tom Bennett: In the Contacts app's main activity, starting from the left, we have the app icon, the navigation mode Spinner (developer.android.com/guide/topics/ui/actionbar.html#Dropdown), the search field, and then the menu items. You can try perhaps using android:layout_gravity to slide an action view to the left of the available space, or it is possible that the left-side positioning is something more intrinsic to SearchWidget. – CommonsWare Mar 16 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

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