Skip to content

Instantly share code, notes, and snippets.

@notdrone
Created February 13, 2015 10:40
Show Gist options
  • Save notdrone/b02988374ce7c4303a01 to your computer and use it in GitHub Desktop.
Save notdrone/b02988374ce7c4303a01 to your computer and use it in GitHub Desktop.
Hide status bar and action bar
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//______________________________________________________________
getSupportActionBar().hide();
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
//_______________________________________________________________
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment