Get list of checked checkboxes from recyclerview android

前端 未结 7 1501
慢半拍i
慢半拍i 2020-12-24 02:40

I have populated the recyclerView with image, title and checkbox. I have two problems.

  1. How to make the checkbox selected when the imageview or the whole rec

相关标签:
7条回答
  • 2020-12-24 03:35

    1) You can add mainHolder.imageview OnClickListener
    2) Two step:

    1. Add to InterestBean model boolen isChecked
    2. Where go to next activity, get all InterestBeans, get all checked InterestBeans and save it.

    Code:

    mainHolder.imageview.setOnClickListener(new View.OnClickListener()
    {
        public void onClick (View v)
        {
            mainHolder.checkBox.setChecked(!mainHolder.checkBox.isChecked());
        }
    });
    
    0 讨论(0)
提交回复
热议问题