选中一定数量的复选框后禁用复选框

时间:2015-10-05 20:44:04

标签: java android android-activity

我有6个复选框,我希望例如如果我有一个变量a = 2让用户检查2个复选框并使另一个禁用..如果我有一个= 3让用户检查3个复选框并禁用剩下的等等。这就是我的尝试:

 public void itemClicked(View v) {
            //code to check if this checkbox is checked!

         CheckBox checkBox = (CheckBox)v;

         check1=(CheckBox)findViewById(R.id.check1);
         check2=(CheckBox)findViewById(R.id.check2);
         check3=(CheckBox)findViewById(R.id.check3);
         check4=(CheckBox)findViewById(R.id.check4);
         check5=(CheckBox)findViewById(R.id.check5);
         check6=(CheckBox)findViewById(R.id.check6);



         if(a==1)

         {

           only one can be checked the others get disabled

            }




         }

     }

并且xml文件的一部分是:

<CheckBox android:id="@+id/check1"
        android:layout_width="140dp"
        android:layout_height="250dp"
         android:scaleX="1.0"
    android:scaleY="1.0"
    android:button="@layout/cb_selector"
         android:layout_marginLeft="80dp" 
        android:layout_marginTop="505dp" 
        android:onClick="itemClicked"
        />



        <CheckBox android:id="@+id/check2"
    android:layout_width="140dp"
        android:layout_height="250dp"
         android:scaleX="1.0"
    android:scaleY="1.0"
    android:button="@layout/cb_selector"
    android:layout_marginLeft="365dp" 
        android:layout_marginTop="505dp" 
        />

我怎么能做到这一点?

2 个答案:

答案 0 :(得分:2)

您需要一组复选框以及onCheckedChange中的变量检查。

CheckBox[] cba;      

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    cba = new CheckBox[]{
            (CheckBox)findViewById(R.id.check1),
            (CheckBox)findViewById(R.id.check2),
            (CheckBox)findViewById(R.id.check3),
            (CheckBox)findViewById(R.id.check4),
            (CheckBox)findViewById(R.id.check5),
            (CheckBox)findViewById(R.id.check6)
    };
    //here set onChechedChange for all your checkboxes
    for (CheckBox cb:cba) {
        cb.setOnCheckedChangeListener(cbListener);
    }

 }

CompoundButton.OnCheckedChangeListener cbListener = new CompoundButton.OnCheckedChangeListener() {
    @Override
    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        checkEnoughAndMakeDisabled(cba);
    }
};

private void checkEnoughAndMakeDisabled(CheckBox checkBoxes[]){
    int countChecked =0;
    for (CheckBox cb:checkBoxes){
        cb.setEnabled(true);
        if (cb.isChecked()) countChecked++;
    }
    //your variable
    if (a <= countChecked) {
        for (CheckBox cb:checkBoxes){
            if (!cb.isChecked())cb.setEnabled(false);
        }
    }
}

Ps:我认为这类问题的最佳做法是使用Data-Binding,但这是其他故事

答案 1 :(得分:1)

如果用户只能选择一个选项,最好使用单选按钮。

无论如何,这是一个简单明了的答案:https://stackoverflow.com/a/20041237/5280641