Search code examples
javaandroidmenuandroid-actionbar

ActionBar with icon and text in portrait mode


I can't seem to get an image and text to work in portrait mode on menu items in the action bar no matter what I try. I even tried to force android portrait orientation

My XML:

 <item android:id="@+id/menu_save"
  android:icon="@drawable/content"
  android:orderInCategory="100"
  android:title="New Group"
 android:showAsAction="withText|always" />

Has anyone figured this out?


Solution

  • From the config.xml file of the native ActionBar:

    values:

    <bool name="config_allowActionMenuItemTextWithIcon">false</bool>
    

    values-480dp:

    <bool name="config_allowActionMenuItemTextWithIcon">true</bool>
    

    To answer your question:

    No you can't do that, if the devices width is smaller than 480dp. (Unless you want to create a custom rom with a modded framework)