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 have been trying to get the status bar to go away as i want to put a fullscreen game in. i'm using phonegap for the iphone

thanks in advance.

p.s: i'm not that good with objective-c so please give simple answers.

share|improve this question

4 Answers

up vote 5 down vote accepted

You can try:

1) call this:

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]

2) or this from your view controller.

[self setWantsFullScreenLayout:YES];

3) You can do it from the Interface Builder. Here's a video about it: http://www.youtube.com/watch?v=aPAChohC-4Q

4) Someone else asked the same thing and got some related answers: Fullscreen UIView with Status bar and Navigation Bar overlay on the top

share|improve this answer
Thanks, the video helped! – ExceptionSlayer Jan 29 '11 at 0:16

For iPhone simply add

<key>UIStatusBarHidden</key>
<true />

in your [appname]-info.plist file

For completeness if you also wish to roll out for android this solution worked well

In the file where you change activity to droidgap

public class app extends DroidGap

Add the following import

import android.view.WindowManager;

And then append the following within the class method

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    WindowManager.LayoutParams.FLAG_FULLSCREEN);

    super.loadUrl("file:///android_asset/www/index.html");
}

Hope this helps

regards

share|improve this answer
thanks man. android tip saved my day :) – cguler Nov 5 '11 at 5:35
thanks i solved my problem also:) – Aamirkhan May 2 '12 at 6:44
In Xcode, you add item and choose YES as the value, but same thing. – Andrew Hedges Jun 9 '12 at 4:08

If you want to the app to load with the status bar initially hidden:

  • [appname]-info.plist file
  • Find "Status bar is initially hidden"
    • Add new row if it isn't already there
  • Select 'YES' for the value

"Status bar is initially hidden" is the key that is available at least in xcode 4.2 beta 5.

share|improve this answer

You can hide the status bar in Interface builder

Where to find? Screenshot link

share|improve this answer
That's only a cosmetic change for interface builder. It doesn't actually set the status bar to hidden when the app runs. – Jasarien Jan 29 '11 at 2:39
1  
The screenshot link is down – Luke Stanley Nov 9 '12 at 7:10

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.