所以如果在
void ChildClick(object o, ExpandableListView.ChildClickEventArgs e)
o 是被点击的 ExpandableListView 并且 e.Parent 也是被点击的 ExpandableListView 并试图在发生 ChildClick 的 Group 中创建 LinearLayout 的实例
ExpandableListView view = o;
LinearLayout group = (LinearLayout) view.GetChildAt(e.GroupPosition);
返回第 n 个位置的 LinearLayout 而不是第 n 个位置的 GROUP 布局,如何在单击子项的 Group 中获取 LinearLayout 的实例?