Created
October 1, 2020 12:26
-
-
Save ForceTower/6bd07354438450a210d07ee62b47d96a 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
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { | |
window.insetsController?.apply { | |
systemBarsBehavior = WindowInsetsController.BEHAVIOR_SHOW_BARS_BY_SWIPE | |
hide(WindowInsets.Type.systemBars()) | |
} | |
} else { | |
window.decorView.systemUiVisibility = (View.SYSTEM_UI_FLAG_LAYOUT_STABLE | |
or View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | |
or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | |
or View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | |
or View.SYSTEM_UI_FLAG_FULLSCREEN | |
or View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment