How is it possible to show second action bar on a bottom of display? I want to be able to hide bottom bar from code according to needs when application is running.
I want to have there action buttons shown always, not only when there is no space on the top (I have top actionbar hidden, only tabs are there). Top and bottom bar should be independent.
Bottom bar si in the picture there: http://goo.gl/pFvHI
Thank you.
Use in your AndroidManifest:
<activity
android:name=".MyActivity"
android:uiOptions="splitActionBarWhenNarrow"
android:label="@string/app_name" />
Key here is uiOptions="splitActionBarWhenNarrow"
.