如何将关键事件发送到编辑文本
2022-09-05 00:05:11
例如,向 edit 文本控件发送退格键以删除字符,或发送字符代码(如 112)以编程方式在 edittext 控件中追加字符。
实际上,我需要一个像这样的方法
void onKeyReceived(int keyCode)
{
// here I would like to append the keyCode to EditText, I know how to add a visible character, but what about some special keys, like arrow key, backspace key.
}