Skip to content

Instantly share code, notes, and snippets.

@StKotok
Last active August 29, 2015 14:17
Show Gist options
  • Save StKotok/dc5db69238d567ff0dee to your computer and use it in GitHub Desktop.
Save StKotok/dc5db69238d567ff0dee to your computer and use it in GitHub Desktop.
Hide ActionBar: put this code to onCreate method fo activity
try { // this hide ActionBar in Android app
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getActionBar().hide();
} catch (NullPointerException ignore) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment