Krishnanunni Jeevan
Krishnanunni Jeevan

Reputation: 1759

Hide titlebar in a particular activity in tab group android

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

Answers (1)

Adam
Adam

Reputation: 418

Add

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 

to particular activity to remove titlebar.

Upvotes: 1

Related Questions