I'm trying to put the actionBar on my project at the bottom of the screen, I'm doing everything right, I guess..
Let's see..
The activity that will use both (actionbar at the top and bottom) is like this:
<activity
android:name=".view.TabsFinanceiroActivity"
android:label="@string/title_activity_tabs_financeiro"
android:screenOrientation="portrait"
android:uiOptions="splitActionBarWhenNarrow">
<meta-data android:name="android.support.UI_OPTIONS"
android:value="splitActionBarWhenNarrow" />
</activity>
The actionBar on the top should only show the tilte and the Home button. And the actionBar on the bottom should show 2 TextViews.
But my actionBar doesn't appears on the bottom too..
My menu.xml has nothing, since I removed the items to do some tests, but nothing worked.
Can someone help me?