Skip to content

Instantly share code, notes, and snippets.

@mstefanko
Created March 28, 2011 13:00
Show Gist options
  • Save mstefanko/890409 to your computer and use it in GitHub Desktop.
Save mstefanko/890409 to your computer and use it in GitHub Desktop.
Hide the status bar and title bar
//for hide the status bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
//hide the title bar
requestWindowFeature(Window.FEATURE_NO_TITLE);
requestWindowFeature(Window.FEATURE_PROGRESS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment