Created
July 11, 2019 04:44
-
-
Save IhwanID/32cd7efa63c0afc9348ca8cd2986ba10 to your computer and use it in GitHub Desktop.
Hide the keyboard Android kotlin
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
| // Hide the keyboard. | |
| val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager | |
| imm.hideSoftInputFromWindow(view.windowToken, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment