Not sure why my onChildClick isn\'t firing. Everything works perfectly, except that when one of the child items is tapped, absolutely nothing happens. Otherwise, the expanda
Be sure to override the isChildSelectable method of your expandable list adapter and return true, like so:
public class MyExpandableListAdapter extends BaseExpandableListAdapter {
...
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
...
}