Skip to content

Instantly share code, notes, and snippets.

View smkazemi's full-sized avatar

Sayed MohamadReza Kazemi smkazemi

View GitHub Profile
@smkazemi
smkazemi / sample.kt
Last active March 9, 2020 16:36
Hide & show android keyboard
// keyboard hide after click on button
val inputMethodManager =
getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
// when click on button hideKeyboard() call
btn_done.setOnClickListener {
showKeyboard(it)
hideKeyboard(it)
}