我有 25 个复选框。我不想检查层次结构。如果我选中 checkbox2,它应该选中 checkbox2 和 checkbox1。如果我选中 checkbox3,它应该选中 checkbox3,2 和 1....
我已经有一个工作代码。但它太渴望 25 个复选框了。我怎样才能使这个代码更小?
if (checkBox0Value) {
checkBox0.setChecked(true);
} else {
checkBox0.setChecked(false);
}
if (checkBox1Value) {
checkBox1.setChecked(true);
checkBox0.setChecked(true);
} else {
checkBox1.setChecked(false);
}
if (checkBox2Value) {
checkBox2.setChecked(true);
checkBox1.setChecked(true);
checkBox0.setChecked(true);
.......................
我的 XML 有标签 insinde
<TableRow
android:id="@+id/tablelvl0"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:gravity="center">
<CheckBox
android:id="@+id/Lcheck0"
android:layout_width="70dp"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-condensed"
android:gravity="center"
android:tag="0"
android:text="0"
android:textColor="@color/colorAccent"
android:textSize="14sp"
android:textStyle="bold" />
..............
杨__羊羊
红颜莎娜
海绵宝宝撒
相关分类