Answers for "android show keyboard programmatically"

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 "android show keyboard programmatically"

Browse Popular Code Answers by Language