Monday, 2 August 2010

Android 2 ways to hide the title bar

In the code:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
}


In the AndroidManifest.xml

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

No comments:

Post a Comment