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