标签: android expandablelistview
在ExpandableListActivity中是否有任何方法可以关闭所有展开的子视图?
答案 0 :(得分:5)
for (int i = 0; i < getExpandableListAdapter().getGroupCount(); i++) { getExpandableListView().collapseGroup(i); }