0

我有一个ListViewwith CheckBoxes 作为行元素(参见下面的行布局)。

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

    <CheckBox
        android:id="@+id/delete_company_row_checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

如何获得带有选中复选框的所有行的列表(用户可以选择多个列表项)?

4

1 回答 1

1

你可以这样做:

for (int i = 0; i < listview.getCount(); i++) {
    View view = listview.getChildAt(i);

    if ((CheckBox) view.findViewById(R.id.delete_company_row_checkbox)).isChecked()) {
        // Add what you need to a list or whatever you need. 
    }
}

当然,这是一个非常基本的示例,但其想法是遍历所有 listview 子项并获取复选框的状态。然后,如果检查了状态 - 将位置或您需要的任何内容添加到列表中。

于 2013-05-16T18:59:14.450 回答