Skip to content

Instantly share code, notes, and snippets.

@akuafif
Created December 10, 2015 21:03
Show Gist options
  • Save akuafif/bec64cbb7d5fd5441ce7 to your computer and use it in GitHub Desktop.
Save akuafif/bec64cbb7d5fd5441ce7 to your computer and use it in GitHub Desktop.
[Java/Android] Disable / Enable EditText
// disable edittext
editText.setFocusable(false);
// enable edittext
editText.setFocusable(true);
editText.setFocusableInTouchMode(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment