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
Use append(CharSequence text)
. This will also update the position of the cursor. See Android Documentation