I have a ListView
with CheckBox
es as row elements (see the row layout below).
<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>
How can I get a list of all rows with checked CheckBoxes (the user can select more than one list item) ?