I\'m having an issue with RadioGroup\'s clearChecked(). I\'m displaying a multiple choice question to the user and after the user selects an answer I check the answer, give
I faced the same problem and i solved with other work-around.
rdbGroup.setOnCheckedChangeListener(null);
rdbGroup.clearCheck();
rdbGroup.setOnCheckedChangeListener(checkedChangeListener);
Hope this will help ツ