Skip to content

Instantly share code, notes, and snippets.

@billynyh
Created June 11, 2013 08:48
Show Gist options
  • Save billynyh/5755405 to your computer and use it in GitHub Desktop.
Save billynyh/5755405 to your computer and use it in GitHub Desktop.
not auto focus edit text when launch view
add this in parent view xml
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
or in code
layout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
layout.setFocusableInTouchMode(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment