如果我第一次设置单选按钮被选中,它工作正常。但是如果我通过调用取消选择
((RadioButton)findViewById(R.id.ID))。setChecked(false);
那么即使我尝试通过调用setChecked(true)来选择它也不会工作,除非用户从屏幕中选择它。
有没有人遇到这个?还是只有我?
if(Val != null){
if( ((RadioButton) findViewById(R.id.ID1)).getText().toString().trim().equals(Val))
((RadioButton) findViewById(R.id.ID1)).setChecked(true);
else if(((RadioButton) findViewById(R.id.ID2)).getText().toString().trim().equals(Val))
((RadioButton) findViewById(R.id.ID2)).setChecked(true);
}
else {
((RadioButton) findViewById(R.id.ID1)).setChecked(false);
((RadioButton) findViewById(R.id.ID2)).setChecked(false);
}
如果其他部分执行至少一次,那么一切都会搞砸。
当我踩踏我的调试器,我可以看到执行进入正确的路径并将其设置为true。它只是被执行了一次,我检查了。而且我不会在代码的任何其他部分重新设置为false。