In my class I create two EditTexts.

editText1 = (EditText)findViewById(R.id.EditText1);
editText2 = (EditText)findViewById(R.id.EditText2);

When I start the app, the cursor is automatically put in the second EditText. How can I change to be set in the first EditText? Should I change something programmatically or in the XML?

link|improve this question

Please upload your AndroidManiFest.xml file's code – Lucifer Feb 2 at 12:28
feedback

3 Answers

up vote 2 down vote accepted

you can try:

editText1.requestFocus();
link|improve this answer
feedback

This is decided by who requests focus. Get the object, that you want to have focus and request focus and it will light up and the cursor should show up there.

link|improve this answer
feedback

there is two way of doing this one in your class like

   editText1.requestFocus();

and another in xml like

<EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <requestFocus />
</EditText>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.