Cpt.Ohlund gave me the right hint. I solved it, now, partly with using EditText.getSelectionStart()
, but I realized that you can also replace the selected text with the same expression and you don't need String.subString()
for that.
int start = myEditText.getSelectionStart();
int end = myEditText.getSelectionEnd();
myEditText.getText().replace(Math.min(start, end), Math.max(start, end),
textToInsert, 0, textToInsert.length());
This works for both, inserting a text at the current position and replacing whatever text is selected by the user. The Math.min()
and Math.max()
is necessary because the user could have selected the text backwards and thus start would have a higher value than end which is not allowed for Editable.replace()
.
Thanks to Cpt.Ohlund for putting me onto the right track and sorry for unnecessarily posting a question I anwered myself, in the end.