I try to make ActionBar at bottom with image and text on Android 4.3
First I write main.xml file for menu
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_search"
android:orderInCategory="100"
android:showAsAction="always|withText"
android:icon="@drawable/city"
android:title="@string/home_icon"/>
<item
android:id="@+id/action_copy"
android:orderInCategory="100"
android:showAsAction="always|withText"
android:icon="@drawable/map"
android:title="@string/mapa_icon"/>
</menu
>
After that I put some lines in Manifest file
<meta-data android:name="android.support.UI_OPTIONS"
android:value="splitActionBarWhenNarrow" />
After all this I get Action bar at bottom but without text just images.. Also I try to put Button and textView on main.xml with drawable part and get same like first time.
Please any solution , or how to get icons with image on bottom ActionBar