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
some time edit text cursor donot comes at particular position is if we directly use editText.setSelection(position); . In that case you can try
editText.setSelection(position);
editText.post(new Runnable() { @Override public void run() { editText.setSelection(string.length()); } });