我有一个ListView
with 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>
如何获得带有选中复选框的所有行的列表(用户可以选择多个列表项)?