There are two EditText,while loading the page a text is set in the first EditText ,so cursor will be now in the starting place of EditText ,I want to set cursor position in second EditText which contains no data.How to do this?
|
|
|||||
|
|
I have done this way to set cursor position to end of the text after updating the text of EditText programmatically
here,
|
|||||||||||
|
There is only one position in an empty EditText, but anyway it's Or did you mean you want to get focus to your |
||||
|
I believe the most simple way to do this is just use padding. Say in your xml's edittext section, add android:paddingLeft="100dp" This will move your start position of cursor 100dp right from left end. Same way, you can use android:paddingRight="100dp" This will move your end position of cursor 100dp left from right end. For more detail, check this article on my blog: Android: Setting Cursor Starting and Ending Position in EditText Widget |
||||
|
|
|
as a reminder: if you are using edittext.setSelection() to set the cursor, and it is NOT working while setting up an alertdialog for example, make sure to set the selection() AFTER the dialog has been created example: AlertDialog dialog = builder.show(); input.setSelection(x,y); |
|||
|
|
|
Let editText2 is your second EditText view .then put following piece of code in onResume()
or put
in your xml layout of the second EditText view. |
|||
|
|