My user interface uses tabbed ABS ( ActionBar.NAVIGATION_MODE_TABS ) and a bunch of mock fragments loaded for each tab.
There is one tab in which I need to hide the ActionBar (to return some screen space) for the user interface, but call getSupportActionBar().hide(); will lock the tabs along with the ActionBar.
I was wondering if there is anything at all where I could hide the action bar without affecting the tabs?
EDIT: Actually, think about it, the action bar does nothing but display the branding / icon of the application. Therefore, I would not mind completely hiding the ActionBar and just show tabs.
source share