Created
November 16, 2016 08:22
-
-
Save wutianlong/fbe93b638486531b15c9be5806bc0251 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void deleteBars() { | |
this.requestWindowFeature(Window.FEATURE_NO_TITLE); | |
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); | |
View decorView = getWindow().getDecorView(); | |
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION; | |
decorView.setSystemUiVisibility(uiOptions); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment