Skip to content

Instantly share code, notes, and snippets.

@manijshrestha
Created October 30, 2014 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manijshrestha/6b9db446e9b795cf440a to your computer and use it in GitHub Desktop.
Save manijshrestha/6b9db446e9b795cf440a to your computer and use it in GitHub Desktop.
@Override
protected void onPostCreate(Bundle bundle) {
super.onPostCreate(bundle);
getActionBar().hide();
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
provisionOwner();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment