Created
October 21, 2019 04:34
-
-
Save trunghq3101/eb86b2915ee151bab5ef17d79ba1982e to your computer and use it in GitHub Desktop.
Detech when soft keyboard shows over a RecyclerView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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