在java文件中设置一个广播组时,当我尝试传递使用setOnCheckedChanngeListener方法时,它正在调用compund按钮,但我想要单选按钮。我怎么解决这个问题?
答案 0 :(得分:0)
如果我理解你的问题,这就是解决方案:
您在侦听器方法中收到的CompoundButton
是RadioButton
,因此您可以投射它:
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked){
RadioButton radioButton = (RadioButton)buttonView;
...
}