Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I make an activity full screen? I mean without the notification bar. Any ideas?

share|improve this question

2 Answers

up vote 89 down vote accepted

You can do it programatically:

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;

public class ActivityName extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // remove title
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.main);
    }
}

Or you can do it via your AndroidManifest.xml file:

<activity android:name=".ActivityName"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
</activity>
share|improve this answer
8  
just android:theme="@android:style/Theme.NoTitleBar.Fullscreen" attribute on your activity on the manifest is enough. Thanks :) – Praveen May 19 '10 at 18:05

Write this Code in AndroidManifest file.

    <activity
        android:name=".Launch"
        android:label="@string/app_name"
     android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > //MAIN IS THIS LINE

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

or do this in your code

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
share|improve this answer
you must add a code to do that thing programmatically in JAVA – rawD3buGGG3R Mar 28 at 11:18
That i know Mr. RawDebugger, but its difficult to grab it! – iNFInite PosSibiLitiEs Mar 28 at 11:19
1  
requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); – iNFInite PosSibiLitiEs Mar 28 at 11:20
dont add it in your comment! :p – rawD3buGGG3R Mar 28 at 17:54
I'm just giving answer to your question. – iNFInite PosSibiLitiEs Mar 29 at 5:45
show 1 more comment

protected by Praveen Apr 30 at 9:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.