Solución de Kotlin
La forma directa de manejar el teclado ocultar + acción realizada en Kotlin es:
// Set action
edittext.setOnEditorActionListener { _, actionId, _ ->
if (actionId == EditorInfo.IME_ACTION_DONE) {
// Hide Keyboard
val inputMethodManager = context.getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(windowToken, 0)
true
}
false
}
Extensión de Kotlin
Use esto para llamar edittext.onDone {/*action*/}
a su código principal. Lo mantiene más legible y fácil de mantener
edittext.onDone { edittext.hideKeyboard() }
fun View.hideKeyboard() {
val inputMethodManager = context.getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(windowToken, 0)
}
fun EditText.onDone(callback: () -> Unit) {
// These lines optional if you don't want to set in Xml
imeOptions = EditorInfo.IME_ACTION_DONE
maxLines = 1
setOnEditorActionListener { _, actionId, _ ->
if (actionId == EditorInfo.IME_ACTION_DONE) {
callback.invoke()
true
}
false
}
}
Extensiones de teclado adicionales
Si desea más formas de simplificar el trabajo con el teclado (mostrar, cerrar, enfocar): lea esta publicación
No olvide agregar estas opciones a su edittext Xml, si no están en el código
<EditText ...
android:imeOptions="actionDone"
android:inputType="text"/>
¿Necesitas inputType="textMultiLine"
ayuda? Lea esta publicación y no agregue imeOptions
ni inputType
en XML