Create a LinearLayout (I don't know if other kinds of layouts will work). Set the attributes android:focusable="true" and android:focusableInTouchMode="true" .
<LinearLayout android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/> <AutoCompleteTextView android:id="@+id/text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:nextFocusUp="@+id/text" android:nextFocusLeft="@+id/text"/>
source share