tags:

views:

185

answers:

1

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:

+2  A: 

Add the android:theme property to your AndroidManifest.xml:

<application android:theme="@android:style/Theme.NoTitleBar">

Erich Douglass