How to delete check box items from list

后端 未结 6 1232
花落未央
花落未央 2021-01-14 02:24

I have 50 list item in the list. Now i have checked 10 item, so how to this 10 checked item delete(remove) from the listview when I click delete button.

Here is My C

6条回答
  •  不思量自难忘°
    2021-01-14 02:47

    If you use a listview with mode CHOICE_MODE_MULTIPLE, you should be able to use something like: listView.getCheckedItemPositions();

    then if you have the list items stored in some kind of list or vector, you should be able to easily remove items with the same positions, and the updating the listview.

    Altough all my checkbox + list knowledge is based on this: Android list and checkbox

提交回复
热议问题