Tuesday, July 2, 2013

Hidding the status and title bar of your application

AndroidManifest.xml:

<activity android:name=".MainActivity"
          android:label="@string/app_name"
          android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
======================================================================
or modify the .java file as follows
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

//Remove status bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

No comments:

Post a Comment