how to Remove the space for showing Application name

android, android-manifest

Solution

You request window feature in your onCreate method:

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

or in AndroidManifest.xml:

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

Problem

I developed an application. I would like to remove space that is used for showing application name on top of my application UI. (The Title Bar) I set Application label as null In manifest File But it will not remove the space for showing Application name Please tell me what is the correct or possible way to do that Thanks in advance

Original source

Related problems