以下のコードでは、部分文字列を含むすべての文字を置き換えています (編集テキストに 4 つの a が含まれている場合、すべての a はここで削除されます)。カーソル位置は edittext フィールドの最初の文字の前に移動します。
//getting cursor position
int end = t1.getSelectionEnd();
//getting the selected Text
String selectedStr = t1.getText().toString().substring(end-1, end);
//replacing the selected text with empty String and setting it to EditText
t1.setText(t1.getText().toString().replace(selectedStr, ""));
カーソル位置を変更せずに、カーソル位置の前の1文字をクリアするにはどうすればよいですか(カーソルが編集テキストの中央にある場合)。