friends,
i want to limit checkbox selection in android listivew to for example only 3 checkboxes should be selected otherwise it should give error message.
u
Take a static int count variable and increment it using these condition
holder.checkBox.isChecked() if it is true then increment in the count then check count>3 then show popup to user
I hope this is Help.