示例#1
0
 public static void Backspace(EditText editText)
 {
     KeyEvent evnt = new KeyEvent(0, 0, 0,Keycode.Del, 0, 0, 0, 0,KeyEventFlags.Canceled);
     editText.DispatchKeyEvent(evnt);
 }
示例#2
0
        public static void Backspace(EditText editText)
        {
            KeyEvent evnt = new KeyEvent(0, 0, 0, Keycode.Del, 0, 0, 0, 0, KeyEventFlags.Canceled);

            editText.DispatchKeyEvent(evnt);
        }