Possible Duplicate:
What do I have to add to a layout to hide the titlebar?
How do I remove the title below the battery, time bar from showing up?
Not sure the terminology for that bar, but on this picture it is the "Nested XML Layout" bar:
Add the android:theme
property to your AndroidManifest.xml:
<application android:theme="@android:style/Theme.NoTitleBar">
Use this on in Java file before setContentView()
requestWindowFeature(Window.FEATURE_NO_TITLE);
Use this AndroidManifest file
android:theme="@android:style/Theme.NoTitleBar"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
精彩评论