Select all checkboxes in RecyclerView

后端 未结 2 1725
长发绾君心
长发绾君心 2021-01-01 22:22

How can I select all checkboxes in recyclerView?

I try to do it like this:

in Adapter:

   public void selectAll         


        
2条回答
  •  离开以前
    2021-01-01 22:55

    You made a simple mistake here

      if (!isSelectedAll) holder.select_item.setChecked(false);
        else holder.select_item.setChecked(true);
    

    change setSelected into setChecked thats it

提交回复
热议问题