4
votes

I am trying to settext in an EditText...But after setText is done, the cursor remains at the start of text.how can i move it to the end of the text?

Any help in this regard is appreciated.

Best Regards, Rony

3

3 Answers

11
votes
EditText inputField;
Editable etext = inputField.getText();
int position = etext.length();
inputField.setSelection(position);
10
votes

Use append(CharSequence text). This will also update the position of the cursor. See Android Documentation

2
votes

Try append("Hello"); instead of setText()