Skip to content

Instantly share code, notes, and snippets.

@ForceTower
Created October 1, 2020 12:26
Show Gist options
  • Save ForceTower/6bd07354438450a210d07ee62b47d96a to your computer and use it in GitHub Desktop.
Save ForceTower/6bd07354438450a210d07ee62b47d96a to your computer and use it in GitHub Desktop.
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