You must activate that your children are selectable! To do that return true in your (overriden) isChildSelectable method of class ExpandableListAdapter.
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}