How to uncheck a checked Android Checkbox

前端 未结 3 1083
感情败类
感情败类 2020-12-28 21:17

I have two radio buttons and 5 checkboxes in my android app. and also a save button. When the user clicks save button I need to uncheck the checkboxes checked by the user.

3条回答
  •  梦谈多话
    2020-12-28 21:50

    If you want to use checkboxes for this, you can set an onItemClickListener on both the checkboxes and need to unselect other in the onItemClick() Method. An example would be like this:-

    CheckBox cb1,cb2;
    //Considering you can initialize the above variables
    cb1.setOnCheckedChangeListener(new OnCheckedChangeListener{
        onCheckedChanged (CompoundButton view, boolean isChecked){
            cb2.setChecked(false);
        }
    });
    cb2.setOnCheckedChangeListener(new OnCheckedChangeListener{
        onCheckedChanged (CompoundButton view, boolean isChecked){
            cb1.setChecked(false);
        }
    });
    

    I would reccomend that you should use radio buttons for this behavior since they come with this functionality built in from the beginning.

提交回复
热议问题