我有ListView
个CheckBox
es作为行元素(请参阅下面的行布局)。
<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>
如何获取带有选中CheckBoxes的所有行的列表(用户可以选择多个列表项)?
答案 0 :(得分: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子项并获取复选框的状态。然后,如果检查状态 - 将位置或您需要的任何内容添加到列表中。