Существует несколько решений:
Первый:
<EditText ...>
<requestFocus />
</EditText>
Второй:
<Your Layout
android:focusable="true"
android:focusableInTouchMode="true"
android:clickable="true"
android:layout_width="0px"
android:layout_height="0px" />
Т.е. ниже двух строк вы можете добавить его на свой родительский макет
android:focusable="true"
android:focusableInTouchMode="true"
Третий:
editText.setFocusable(true);
Далее:
<EditText ...>
android:focusable="true"
</EditText>
И много разных способов там все предпочтительнее.