Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to insert a constant string into an EditText by the press of a button. The string should be inserted at the current position in the EditText. If I use EditText.append the text gets inserted at the end of the EditText.

How can I do that? I couldn't find a suitable method.

share|improve this question

2 Answers

up vote 7 down vote accepted

Try using EditText.getSelectionStart() to get the current position of the cursor. Then you can use String.subString to get the text before and after the cursor and insert your text in the middle.

Haven't tried though.

share|improve this answer

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.

share|improve this answer
Uesd this.Working thnks !! – iRunner Sep 12 '12 at 13:15
This gives an IndexOutOfBoundException : replace (-1 ... -1) starts before 0 when the EditText is empty – Samet Jan 26 at 12:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.