单选按钮和复选框

时间:2019-03-28 07:44:22

标签: java android android-checkbox android-radiobutton

我有3个单选按钮和10个复选框,我只是想阻止用户选择任何复选框,直到它首先选择了一个单选按钮,请帮忙。

4 个答案:

答案 0 :(得分:1)

在广播组中添加RadioButton

 <RadioGroup
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:id="@+id/radio_group"
 >
 <RadioButton
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:id="@+id/button1"
     android:text="btn 1"
     />
 <RadioButton
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="btn 2"
     android:id="@+id/button2"
     />
 <RadioButton
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:id="@+id/button3"
     android:text="btn 3"
     />
</RadioGroup>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/radio_group"
    android:layout_marginTop="10dp"
    android:orientation="vertical"
    >

    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check1"
        android:text="check 1"
        />
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check2"
        android:text="check 2"
        />
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check3"
        android:text="check 3"
        />
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check4"
        android:text="check 4"
        />
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check5"
        android:text="check 5"
        />
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/check6"
        android:text="check 6"
        />


</LinearLayout>

并在活动中实现RadioGroup onCheckChangeListener。在此之前,请确保通过checkbox.setEnabled(false)

禁用所有复选框
public class MainActivity extends AppCompatActivity {


RadioGroup radioGroup;
RadioButton radioButton1,radioButton2,radioButton3;
CheckBox checkBox1,checkBox2,checkBox3,checkBox4,checkBox5,checkBox6;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    radioGroup= (RadioGroup) findViewById(R.id.radio_group);
    radioButton1= (RadioButton) findViewById(R.id.button1);
    radioButton2= (RadioButton) findViewById(R.id.button2);
    radioButton3= (RadioButton) findViewById(R.id.button3);
    checkBox1= (CheckBox)findViewById(R.id.check1);
    checkBox2= (CheckBox)findViewById(R.id.check2);
    checkBox3= (CheckBox)findViewById(R.id.check3);
    checkBox4= (CheckBox)findViewById(R.id.check4);
    checkBox5= (CheckBox)findViewById(R.id.check5);
    checkBox6= (CheckBox)findViewById(R.id.check6);


    checkBox1.setEnabled(false);
    checkBox2.setEnabled(false);
    checkBox3.setEnabled(false);
    checkBox4.setEnabled(false);
    checkBox5.setEnabled(false);
    checkBox6.setEnabled(false);

    radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {

            RadioButton checkedRadioButton = (RadioButton)group.findViewById(checkedId);

            boolean isChecked = checkedRadioButton.isChecked();
            if (isChecked){
                checkBox1.setEnabled(true);
                checkBox2.setEnabled(true);
                checkBox3.setEnabled(true);
                checkBox4.setEnabled(true);
                checkBox5.setEnabled(true);
                checkBox6.setEnabled(true);
            }
        }
    });
}

答案 1 :(得分:0)

默认情况下,将所有复选框设置为禁用状态。然后为所有单选按钮添加检查更改侦听器。添加代码以启用“单选按钮”上的所有复选框以检查更改监听器。

答案 2 :(得分:0)

使用RadioButtons方法,将Checkboxes设置为禁用,并检查单选按钮之一是否为isSelected(),如果为true,则将checkboxex设置为启用。

答案 3 :(得分:0)

默认情况下,您可以将一个单选按钮保持为选中状态,以便用户必须使用默认选择或更改选择-两种方式都始终选择一个单选按钮。

如果您不想保留默认的单选,

  1. 使用广播组

    RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radioGroup);

  2. 禁用开头的所有复选框

    checkBox.setEnabled(false);

  3. 设置单选组的onClick侦听器,并在其中启用复选框。

    radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { checkBox.setEnabled(false); } });