I have a list item which contains a CheckBox, and I want to be able to click on the CheckBox and on the list item itself. Unfortunately, there seems to be some sort of confl
Have you tried setting
android:focusable="false"
android:focusableInTouchMode="false"
?
It worked for me.
This did the work for me
<CheckBox
...
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false" />
by using android:descendantFocusability="blocksDescendants" its working fine