OnItemClickListener was not work with the checkbox?

Best way to do this is set these following properties for your checkbox:

  android:focusable="false"
  android:focusableInTouchMode="false"

I had a same issue and did this.

Leave a Comment