There are two EditText,while loading the page a text is set in the first EditText, So now cursor will be in the starting place of EditText, I want
EditText
If you want to set the cursor after n character from right to left then you have to do like this.
n
edittext.setSelection(edittext.length()-n);
If edittext's text like
version
and you want to move cursor at 6th position from right
Then it will move the cursor at-
version ^