单选按钮在 android 中出错

Radio Button goes wrong in android

有时当我想 select 在单选按钮中选择时,单选按钮有问题,我可以 select 两个收音机但是有时是正确的,因为默认方式必须工作。

这是我的应用程序中的两个示例:

这是我的代码:

 span.replace(0,0,getText(R.string.ForeSingleChoice));
                    new DynamicViews().makeNormalContent(getApplicationContext(),span,linearLayout,16,16,16,16,16.0f);
                    span.clear();

                    radioGroup = new DynamicViews().makeRadioGroup(getApplicationContext(),linearLayout);
                    new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop1_2),-1);
                    new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop2_2),5);
                    new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop3_2),-1);
                    new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop4_2),-1);

                    radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
                        @Override
                        public void onCheckedChanged(RadioGroup group, int checkedId) {
                            switch (checkedId)
                            {
                                case 5: goToNextLevel= true ;
                                    break;
                                default: goToNextLevel = false;
                                    break;
                            }
                        }
                    });

DynamicViews makeRadioButton:

public RadioButton makeRadioButton(Context context, RadioGroup radioGroup, String text, int Id) {
    RadioButton radioButton = new RadioButton(context);
    LinearLayout.LayoutParams Params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
    radioButton.setBackgroundResource(R.drawable.backgroundbetweenradios);
    radioButton.setLayoutParams(Params);
    radioButton.setPadding(dpToPx(8,context) , dpToPx(8,context) , dpToPx(8,context) , dpToPx(8,context));
    radioButton.setId(Id);
    radioButton.setText(text);
    radioButton.setTextColor(Color.BLACK);
    radioGroup.addView(radioButton);

    return radioButton;
}

DynamicViews makeRadioGroup:

public RadioGroup makeRadioGroup(Context context, LinearLayout linearLayout) {
    RadioGroup radioGroup = new RadioGroup(context);
    LinearLayout.LayoutParams Params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
    radioGroup.setLayoutParams(Params);
    radioGroup.setOrientation(LinearLayout.VERTICAL);

    CardView cardView = new CardView(context);
    cardView.setCardBackgroundColor(Color.WHITE);
    cardView.setCardElevation(8.0f);
    Params.setMargins(dpToPx(16,context) , dpToPx(16,context) , dpToPx(16,context) , dpToPx(16,context));
    cardView.setLayoutParams(Params);
    cardView.addView(radioGroup);
    linearLayout.addView(cardView);

    return radioGroup;
}

我的应用程序由很多单选按钮组成,这是我制作这些单选按钮的方法,有什么问题吗?这是一个错误吗?

将此添加到您的 onCreate()

CompoundButton.OnCheckedChangeListener listener = new CompoundButton.OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if(isChecked){
                    rbtn1.setChecked(yesrbtn == buttonView);
                    rbtn2.setChecked(norbtn == buttonView);
                    ....

                }

            }

        };

    rbtn1.setOnCheckedChangeListener(listener);
    rbtn2.setOnCheckedChangeListener(listener);

这样做是为了确保单选按钮不允许有 2 个或更多选择

您尝试过为每个单选按钮指定唯一 ID 吗?

new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop1_2),1);
new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop2_2),5);
new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop3_2),2);
new DynamicViews().makeRadioButton(getApplicationContext(),radioGroup,getString(R.string.Choice_Q2Mathematicsop4_2),3);