Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a TabHost with three tabs. The first tab's content is the Intent of a custom activity who's contentview is a relative layout containing two EditTexts and two CheckBoxes (and a button).

Each checbox, when checked, enables/disables one EditText and the other checkbox. and I went about that like this:

chkPolaziste.setOnCheckedChangeListener(new OnCheckedChangeListener()
    {
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
        {
            if ( isChecked )
            {
                entryPolaziste.setFocusable(false);
                entryPolaziste.setEnabled(false);
                chkOdrediste.setFocusable(false);
                chkOdrediste.setEnabled(false);
            }
            else
            {
                entryPolaziste.setEnabled(true);
                entryPolaziste.setFocusable(true);
                chkOdrediste.setEnabled(true);
                chkOdrediste.setFocusable(true);
            }
        }
    });

And that works. When one checkbox is checked, it disables the other checkbox and his EditText, and when I uncheck it, EditText and the other checkbox are enabled. But, after it's enabled, I can't type anything into the EditText. It just flicks for a moment when I click on it, and switches focus to another view. It looks to me as though the control is not fully enabled.

I've also tried to force the focus on the re-enabled EditText with requestFocus(), and tried to setFocusableInTouchMode(), but neither had worked.

I don't have an android device, so I only test this in the emulator (Min SDK is 1.6).

share|improve this question
Important note: This behaviour is manifested only for touch (when i click the EditText, but it works normally with the track ball (that's why I've tried setFocusableInTouchMode method). – dr.lijenjin Jun 26 '10 at 0:38

1 Answer

Workaround:

Use setFocusableInTouchMode and setFocusable, both of them.

share|improve this answer
Thank you, this worked for me. – TheRealKingK Jul 31 '12 at 16:31
Thanks - this was a huge help! (Any ideas on why this is necessary?) – HeavyE Apr 3 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.