光环伟人?
我是 Kotlin 的新手。
我试图在调用后以编程方式点击键盘上的按钮。
在这里,当专注于编辑文本时,调用 showKeyboard() 后,键盘出现,我想以编程方式点击一个键(例如“a”)。
这是我目前所拥有的...
button.setOnClickListener {
showKeyboard()
/** If possible have the code to tap on a button programmatically here...*/
}
private fun showKeyboard() {
val imm = this.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0)
}
非常感谢任何帮助! 谢谢,保重。