Skip to content

Instantly share code, notes, and snippets.

@trunghq3101
Created October 21, 2019 04:34
Show Gist options
  • Select an option

  • Save trunghq3101/eb86b2915ee151bab5ef17d79ba1982e to your computer and use it in GitHub Desktop.

Select an option

Save trunghq3101/eb86b2915ee151bab5ef17d79ba1982e to your computer and use it in GitHub Desktop.
Detech when soft keyboard shows over a RecyclerView
recyclerMessages.addOnLayoutChangeListener { v, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom ->
if (bottom < oldBottom) {
recyclerMessages.smoothScrollToPosition(0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment