Skip to content

Instantly share code, notes, and snippets.

@nontravis
Created June 2, 2018 14:39
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 nontravis/6556aff0460d9cfd599a40b8e4e72510 to your computer and use it in GitHub Desktop.
Save nontravis/6556aff0460d9cfd599a40b8e4e72510 to your computer and use it in GitHub Desktop.
get_statusbar_height.kt
var statusBarHeight: Int = 0
ViewCompat.setOnApplyWindowInsetsListener(rootView) { view, windowInsets ->
statusBarHeight = windowInsets.systemWindowInsetTop
return windowInsets //pass insets down to child view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment