单击单选按钮时更改单选组的选择

时间:2018-10-27 18:02:25

标签: android radio-button android-radiogroup

我有一个自定义单选组,其中有两个单选按钮,我希望即使用户单击选中的单选按钮,也要更改其选择。

现在这是它的工作方式:

enter image description here

如您所见,如果选中(关闭),然后单击它,则什么也没有发生。我希望它将选择更改为(打开)。

我试图像这样使用OnClickListener:

final RadioButton btn_on = view.findViewById(R.id.on);
    final RadioButton btn_off = view.findViewById(R.id.off);

    final View.OnClickListener listener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {

                if(radio_group.getCheckedRadioButtonId()==R.id.on)
                {
                    radio_group.check(R.id.off);
                }

                if(radio_group.getCheckedRadioButtonId()==R.id.off)
                {
                    radio_group.check(R.id.on);
                }

        }
    };

    btn_on.setOnClickListener(listener);
    btn_off.setOnClickListener(listener);

但是它不起作用..还有另一种方法吗?

1 个答案:

答案 0 :(得分:0)

我认为这应该有效:

boolean fromClickListener = false;
boolean fromCheckedChange = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    final RadioGroup radio_group = findViewById(R.id.radio_group);
    final RadioButton btn_on = findViewById(R.id.on);
    final RadioButton btn_off = findViewById(R.id.off);

    radio_group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {
            if (fromClickListener)
                return;

            fromCheckedChange = true;
        }
    });


    final View.OnClickListener listener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if (fromCheckedChange) {
                fromCheckedChange = false;
                return;
            }

            boolean clickedOn = (((RadioButton) v) == btn_on);

            fromClickListener = true;
            btn_on.setChecked(!clickedOn);
            btn_off.setChecked(clickedOn);
            fromClickListener = false;
        }
    };

    btn_on.setOnClickListener(listener);
    btn_off.setOnClickListener(listener);
}