So if in
void ChildClick(object o, ExpandableListView.ChildClickEventArgs e)
o is the ExpandableListView that was clicked and e.Parent is also the ExpandableListView that was clicked and trying to create an instance of the LinearLayout in the Group for which the ChildClick took place by doing
ExpandableListView view = o;
LinearLayout group = (LinearLayout) view.GetChildAt(e.GroupPosition);
returns the LinearLayout in the nth position and not the GROUP layout in the nth position, how do I get an instance of the LinearLayout in the Group for which the child was clicked?