Android编程如何在onCheckedChanged(CompoundButton arg0, boolean arg1)中限制CheckBox的选择数量。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android编程如何在onCheckedChanged(CompoundButton arg0, boolean arg1)中限制CheckBox的选择数量。相关的知识,希望对你有一定的参考价值。

我定义了是个CheckBox对象,但最多只想允许选择五个。如果选到第6个则自动取消并提示。自动取消和提示不用解答,前面的请高手指教!
else if (temp > 5 && cb[i].isChecked())//cb为CheckBox数组


if (cbx[i] != 'z')

temp--;
else if (cbx[i] == 'z')

cb[i].setChecked(false);//超限(但是结果总是错的实在想不通了)


做一个全局的计数器,统计选择的个数,然后在oncheckchanged方法内根据checkbox的状态对计数器进行加减运算,再判断是否达到6个再取消该按钮的选择即可追问

做了一个 效果不理想:
for (int i = 1; i <= 10; i++)

if (temp <= 5 && cb[i].isChecked())

if (cbx[i] != 'z')//没有点选的设置为字符z选择的设置为其他

temp--;
else if (cbx[i] == 'z')

temp++;

参考技术A 可以这样操作:
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ff0000"
android:text="I am one"
/>

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button"/>

以上是关于Android编程如何在onCheckedChanged(CompoundButton arg0, boolean arg1)中限制CheckBox的选择数量。的主要内容,如果未能解决你的问题,请参考以下文章

如何自学 Android 编程

如何以编程方式在 Android 中包含布局?

如何在android中以编程方式启用位置访问?

android编程如何在View的onTouch方法里面动态的画图

如何在 Android 上以编程方式截取屏幕截图? [复制]

在android中以编程方式创建视图时如何传递AttributeSet