取消选中 Android 中的所有复选框

Uncheck all Check boxes in Android

我的布局中有一个清除按钮,点击它我想取消选中线性布局内的所有复选框 listview

XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id ="@+id/mainLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <Button
                android:id="@+id/btnClear"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right|center"
                android:gravity="right|center"
                android:text="Remove" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">
            <ListView
                android:id="@+id/listview"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="5"
                android:cacheColorHint="@android:color/transparent"
                android:divider="#fff"
                android:dividerHeight="1dp"
                android:fadingEdge="none">
            </ListView>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

listview 中,我正在膨胀一个布局,该布局将具有 checkbox.Now btnClear 我想取消选中所有复选框。我们如何才能做到这一点请帮助我

创建一个遍历 ListView 的所有子项的 for 循环并检查 View 是否为 CheckBox 类型并对其执行 setChecked(false)

for (int i = 0; i < mListView.getCount(); i++) { 
       View mChild = mListView.getChildAt(i);

       //Replace R.id.checkbox with the id of CheckBox in your layout
       CheckBox mCheckBox = (CheckBox) mChild.findViewById(R.id.checkbox);
       mCheckBox.setChecked(false);
}