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);//超限(但是结果总是错的实在想不通了)
做了一个 效果不理想:
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++;
<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编程如何在View的onTouch方法里面动态的画图