Android点击可取消的RadioButton。

需求场景举例:新增地址中地址标签属性 家/学校/公司 三选一 点击选中的取消选择

实现方式:继承AppCompatRadioButton,重写toggle方法。上代码:

public class XXXButton extends AppCompatRadioButton {
    public XXXButton (Context context) {
        this(context, null);
    }

    public XXXButton (Context context, AttributeSet attrs) {
        this(context, attrs, R.attr.radioButtonStyle);
    }

    public XXXButton (Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void toggle() {
        setChecked(!isChecked());
        if (!isChecked()) {
            ((RadioGroup) getParent()).clearCheck();
        }
    }
}

xml使用



                

                

                

            

Activity中监听

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                switch (checkedId) {
                    case R.id.rb_home:
                        lable = 0;
                        break;
                    case R.id.rb_company:
                        lable = 1;
                        break;
                    case R.id.rb_school:
                        lable = 2;
                        break;
                    default:
                        lable = -1;
                        break;
                }
            }
        });

over

你可能感兴趣的:(Android点击可取消的RadioButton。)