Skip to content

Instantly share code, notes, and snippets.

@reline
Created October 20, 2018 06:24
Show Gist options
  • Save reline/648c41bf75f0488b231d3fc47cced309 to your computer and use it in GitHub Desktop.
Save reline/648c41bf75f0488b231d3fc47cced309 to your computer and use it in GitHub Desktop.
Android - hide keyboard
fun hideKeyboard() {
currentFocus?.windowToken?.let {
val imm = applicationContext?.getSystemService(InputMethodManager::class)
imm?.hideSoftInputFromWindow(it, InputMethodManager.HIDE_NOT_ALWAYS)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment