Skip to content

Instantly share code, notes, and snippets.

@Shivamdhuria
Created May 1, 2020 21:28
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 Shivamdhuria/a087ec63792c113e680a71f28cc0f564 to your computer and use it in GitHub Desktop.
Save Shivamdhuria/a087ec63792c113e680a71f28cc0f564 to your computer and use it in GitHub Desktop.
private fun setInsets() {
// https://proandroiddev.com/draw-under-status-bar-like-a-pro-db38cfff2870
ViewCompat.setOnApplyWindowInsetsListener(recyclerView) { view, insets ->
recyclerView.updatePadding(top = insets.systemWindowInsetTop - 1)
insets
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment