android - How to hide ActionBar, but keep the Tab navigation buttons? -


i'm new in creating android apps, , hide title, app icon, , whole top area of actionbar, keep tabs navigations below it. possible?

here explanation picture want exactly:

thank in advance!

this leave tabs:

actionbar actionbar = getactionbar(); actionbar.setnavigationmode(actionbar.navigation_mode_tabs); actionbar.setdisplayshowhomeenabled(false); actionbar.setdisplayshowtitleenabled(false); 

set tabs below it.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -