addFooterView(v)与 addHeaderView(v)之后 头或者尾部没有加上去
myExpandableListView.addHeaderView(headView);
myExpandableListView.addFooterView(footerView);
原因很简单:这两句话要放到myExpandableListView.setAdapter之前!!
myExpandableListView.addHeaderView(headView);
myExpandableListView.addFooterView(footerView);
原因很简单:这两句话要放到myExpandableListView.setAdapter之前!!