check box in listview not working properly

后端 未结 4 610
耶瑟儿~
耶瑟儿~ 2020-12-03 13:07

I am implementing the checkbox with listview for every Iten of listview.The Problem i am getting is when I am clicking on any single check box and when i scroll then some ot

4条回答
  •  一生所求
    2020-12-03 13:39

    Override this methods in your adapter:

    override fun getItemId(position: Int) = position.toLong()
    
    override fun getItemViewType(position: Int) = position
    

提交回复
热议问题