Skip to content

Instantly share code, notes, and snippets.

View Jeff11's full-sized avatar
🏠
Working from home

Jeffrey Kovács Jeff11

🏠
Working from home
View GitHub Profile
fun FragmentActivity.hideKeyboard() {
currentFocus?.run {
systemService<InputMethodManager>().hideSoftInputFromWindow(windowToken, 0)
}
}