Is it possible to use fragment tabs on action bar with the Theme.Holo.NoActionBar theme?
I mean… I already use this theme on my layouts but apparently it is overriden since the fragments have to show up in the action bar?
What I wanted to achieve is to actually get rid of the Title and App Icon over the fragment tabs. Something similar to the Google Music app.
Is this possible?
Try calling
setDisplayShowHomeEnabled(false)andsetDisplayShowTitleEnabled(false)on yourActionBar, and leave the theme alone.