Android mostra o teclado programaticamente
fun View.showKeyboard() = ViewCompat.getWindowInsetsController(this)
?.show(WindowInsetsCompat.Type.ime())
//Now you can just call editText.showKeyboard() to show the keyboard for the EditText
Obedient Owl