Friday, 1 February 2013

How to move cursor right side in edit text android ?


// this code will help you to move

private mEditext;
int cursorPos =mEditext.getSelectionStart();
cursorPos--;
if (cursorPos<0) cursorPos=0;
mEditext.setSelection(cursorPos);

No comments:

Post a Comment