Selecting All Items in a Listview on checkbox select

后端 未结 4 1502
北恋
北恋 2020-12-06 15:46

I am using simple listView with simple_list_item_multiple_choice I have added a checkbox and on its checked event want all list items to get selected

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-06 16:11

    for ( int i=0; i < listview.getChildCount(); i++) {
       listview.setItemChecked(i, true);
    }
    

提交回复
热议问题