Skip to content

Instantly share code, notes, and snippets.

@milhauscz
Created September 24, 2020 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milhauscz/396df01ac570759f97192192af3e56fe to your computer and use it in GitHub Desktop.
Save milhauscz/396df01ac570759f97192192af3e56fe to your computer and use it in GitHub Desktop.
/**
* Should be called from [Activity.onCreate].
* @see hideSystemUI
* @see showSystemUI
*/
fun Activity.showBelowCutout() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
window.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment