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 cursor position in EditText? try these below code
EditText rename; String title = "title_goes_here"; int counts = (int) title.length(); rename.setSelection(counts); rename.setText(title);