Reputation: 1759
I have a tabhost with multiple tab activities.For one particular activity I need to hide the default title.is it possible?Even if I use requestWindowFeature(Window.FEATURE_NO_TITLE) the tabhosts title overrides it.Any help would be appreciated
Upvotes: 0
Views: 690
Reputation: 418
Add
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
to particular activity to remove titlebar.
Upvotes: 1