• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. A

    Apps EditText not able to regain focus.

    if (isChecked) { editText.setFocusable(false); editText.setEnabled(false); } else { editText.setEnabled(true); editText.setFocusable(true); } So this is called after a checkbox is clicked on. When it's...