Sunday, June 19, 2011

Removing Activity Label

In manifest.xml file you need to change the theme so there is no title bar

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

and that needs to be in the activity element 

<activity android:name=".MyMainClass" android:label="@string/app_name"  
android:theme="@android:style/Theme.NoTitleBar">

No comments:

Post a Comment