Answers for "android programmatically open keyboard"

CSS
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 programmatically open keyboard"

Browse Popular Code Answers by Language