Recomiendo usar un LifecycleObserver que es parte de Handling Lifecycles with Lifecycle-Aware Components de Android Jetpack .
Quiero abrir y cerrar el teclado cuando aparece el Fragmento / Actividad. En primer lugar, defina dos funciones de extensión para EditText. Puede colocarlos en cualquier parte de su proyecto:
fun EditText.showKeyboard() {
requestFocus()
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT)
}
fun EditText.hideKeyboard() {
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.hideSoftInputFromWindow(this.windowToken, 0)
}
Luego defina un LifecycleObserver que abra y cierre el teclado cuando la Actividad / Fragmento alcance onResume()
o onPause
:
class EditTextKeyboardLifecycleObserver(private val editText: WeakReference<EditText>) :
LifecycleObserver {
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
fun openKeyboard() {
editText.get()?.postDelayed({ editText.get()?.showKeyboard() }, 100)
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
fun closeKeyboard() {
editText.get()?.hideKeyboard()
}
}
Luego agregue la siguiente línea a cualquiera de sus Fragmentos / Actividades, puede reutilizar el LifecycleObserver en cualquier momento. Por ejemplo, para un fragmento:
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
// inflate the Fragment layout
lifecycle.addObserver(EditTextKeyboardLifecycleObserver(WeakReference(myEditText)))
// do other stuff and return the view
}