When using the Android Actionbar I am doing the following in the onCreateOptionsMenu override:
MenuItem m = menu.add(0, Search, 10, R.string.Search);
m.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
It works fine for tablets but on a phone I would like more room as the caption is being shrunk to unacceptable proportions (Using ActionBarSherlock).
Is there a way to specify the minimum caption area so that my caption is a little more meaningful?
Android definition of IsRoom is rather different to mine. 🙂
Contrived example below.

Thanks
ActionBarSherlock version 4 has been released which now supports a much better measuring system for determining how to layout the action bar. I urge you to upgrade so that the above layout will be rendered correctly.
Also, make sure you are not using “always” as your
showAsActionso that only the correct amount of action items are displayed.