RadioButton的setChecked(true)无效或者是点击状态不改变

问题:在ListView中Item是个RadioGroup,在Adapter中动态添加RadioButton,并通过setChecked为RadioButton设置选中和未选中的状态,中间会通过Adapter的notifyDataSetChanged方法改变数据源的方法,改变RadioButton的状态,中间就出现了点击RadioButton无效的状态,其实OnCheckedChangeListener已经收到监听,并且为checked = true,但是RadioButton的状态是未选中的状态。

问题原因:原来是多次调用setChecked(false)出的问题,多次调用后就会导致下次点击不会变为选中状态。

解决问题:如果是把所有的选项都设为false,可以调用RadioGroup的clearCheck()方法,

你可能感兴趣的:(android)