1 min readJan 21, 2018
In my case, I was maintaining a HashSet for the selected values and inside the BindViewHolder just call isChecked = false by default and then call isChecked = hashSet.contains(value)
it.appSelectionCheckBox.isChecked = false
it.appSelectionCheckBox.isChecked = selectedPackages.contains(info.packageName)