标签:
如题,本来只想在切换选项后同步下菜单项,结果onCheckedChanged方法执行多次,导致程序出现错误。查了半天,结果也没找出好的解决方法。最后,只能根据http://blog.csdn.net/piglovesula/article/details/9820521 供的方法,用radioButton.setChecked(true)方法替换了。我是用以下方法替换的,如果高人有好方法,求指教:
for (int i = 0; i <group.getChildCount(); i++) {
RadioButton rb=(RadioButton) group.getChildAt(i);
if (resourceId==rb.getId()) {
rb.setChecked(true);
}
}
android RadioGroup调用check(id)方法时,onCheckedChanged方法被执行多次解决办法
标签:
原文地址:http://www.cnblogs.com/hanyuchuqing/p/4437031.html