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.

I am trying to make a fullscreen activity, but it doesn't seem to work in GingerBread, here is my code

 @SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_eyes);
   if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){
    ActionBar actionBar = getActionBar();
    actionBar.hide();

}

   if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD){
       requestWindowFeature(Window.FEATURE_NO_TITLE);
       getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
   }

In Gingerbread there is still a title.

Does anyone know how to fix this?

share|improve this question
2  
is there a reason you aren't setting it from the manifest? – FoamyGuy Aug 26 '12 at 3:18

4 Answers

Remember that you must call requestWindowFeature before call setContentView

Try this to make a full screen activity by java:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

and in Manifest

android:theme="@android:style/Theme.Translucent.NoTitleBar"
share|improve this answer

requestWindowFeature has to be called before super.onCreate. Like so:

@SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {

    if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD){
        requestWindowFeature(Window.FEATURE_NO_TITLE);
    }

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_eyes);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){
        ActionBar actionBar = getActionBar();
        actionBar.hide();
    }

    if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD){
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    }
    // ...

If this doesn't work, move the getWindow().setFlags(...) call to the top as well.

share|improve this answer

First of all you should set the activity as full screen in the manifest. In the desired activity, add this code

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

and your onCreate should be like this

if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD){
    requestWindowFeature(Window.FEATURE_NO_TITLE); 
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
}

setContentView(R.layout.main);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){
    ActionBar actionBar = getActionBar();
    actionBar.hide();

}

This might solve the problem.

share|improve this answer

Unless you have a reason to not setting it in your manifest, add this attribute to your tag in the Manifest:

<application
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
    .....
>

And I believe you wouldn't need the if-conditions code in the onCreate().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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