Reputation: 672
I am developing a simple four-action app for Android 3.2. I want all the menu items to appear in the action menu on a single line. (At the moment they appear as a 2x2 grid. I want a 1x4 grid.)
To achieve this I would like to:
android:title
attribute, but the empty space for the text remainsHow can I achieve this?
Upvotes: 1
Views: 263
Reputation: 115932
this is just a guess , but it seems like a thing that android won't support out of the box , since there are many different screens out there , and some won't have enough space for all your buttons (you have 4 , but imagine someone who wishes 10 instead) and google won't like it that the user will be frustrated when trying to click the tiny action buttons.
if you want, you can always create your own customized action bar , which would have any behavior you wish .
Upvotes: 1