Answers for "how to show keyboard programmatically in android"

0

android show keyboard programmatically

fun View.showKeyboard() = ViewCompat.getWindowInsetsController(this)
    ?.show(WindowInsetsCompat.Type.ime())
    
//Now you can just call editText.showKeyboard() to show the keyboard for the EditText
Posted by: Guest on July-08-2021

Code answers related to "how to show keyboard programmatically in android"

Browse Popular Code Answers by Language