There are two ways to do this in your class, for example
editText1.requestFocus();
and the other in xml for example
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<requestFocus />
</EditText>
Akram source
share