I have developed the sample code of ExpandableListView in android. Data is being populated in Adapter and displaying in the ExpandableListView properly
ExpandableListView
If you place an item that is focusable in a list, then the list items no longer respond to clicks
focusable
list
list items
clicks
Try to set the CheckBox android:focusable attribute to false.
CheckBox
android:focusable
false
In groupView layout set android:focusable="true" , android:clickable="true". For checkbox set android:focusable="false"
groupView layout
android:focusable="true"
android:clickable="true"
checkbox
android:focusable="false"