onClick not triggered on LinearLayout with child
android:duplicateParentState="true"
did not help me.
To make your layout clickable with its children you need add this option for every child:
android:clickable="false"
Then click handling will go up to parent.
for every child
android:duplicateParentState="true"