Skip to content

Instantly share code, notes, and snippets.

@rafaelwkerr
Created February 27, 2016 15:28
Show Gist options
  • Save rafaelwkerr/b44bb62b43ada5953465 to your computer and use it in GitHub Desktop.
Save rafaelwkerr/b44bb62b43ada5953465 to your computer and use it in GitHub Desktop.
Remove Android Focus on EditText
<!-- Dummy item to prevent AutoCompleteTextView from receiving focus -->
<LinearLayout
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"/>
<!-- :nextFocusUp and :nextFocusLeft have been set to the id of this component
to prevent the dummy from receiving focus again -->
<AutoCompleteTextView android:id="@+id/autotext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:nextFocusUp="@id/autotext"
android:nextFocusLeft="@id/autotext"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment