CheckBox will uncheck and check when scrolling down the listview

前端 未结 4 1958
庸人自扰
庸人自扰 2021-01-28 10:21

In my application I use this to count the checked checkbox in real time meaning when tick the box the count above will increase or decrease. but when scrolling down the listview

4条回答
  •  盖世英雄少女心
    2021-01-28 10:36

    Your adapter will have a “getView()” method that you will do all the work for populating the cells data, use getItem(position) to get the item and then update all your views in the cell during that getView() method

提交回复
热议问题