3

As by default, the application name is appearing on one label like TextView. How do i remove my titlebar permanently for my application?

Any ideas?

Praveenkumar
  • 24,084
  • 23
  • 95
  • 173

2 Answers2

5

You can use below code for that -

<activity android:name="YourActivityname" android:theme="@android:style/Theme.NoTitleBar" />

If you want the full screen of your device you can use below code -

<activity android:name="YourActivityname" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />

And, also refer Developer's Site

Praveenkumar
  • 24,084
  • 23
  • 95
  • 173
3

That is a setting based on the activity in your android manifest file.

Use the No Title Bar theme for your activity.

<activity android:name="MyActivityName" android:theme="@android:style/Theme.NoTitleBar" />
huntsfromshadow
  • 1,085
  • 8
  • 12