BaseExpandableListAdapter的notifyDataSetChanged()方法,在方法里面展开所有的分组。
@Override
public void notifyDataSetChanged() {
int groupCount = expandableListView.getCount();
Log.i("-------", "groupCount="+groupCount);
super.notifyDataSetChanged();
for (int i=0; i
};
}
转载,仅供参考。