在“可扩展列表活动”中关闭展开的子视图

时间:2012-01-30 13:06:45

标签: android expandablelistview

在ExpandableListActivity中是否有任何方法可以关闭所有展开的子视图?

1 个答案:

答案 0 :(得分:5)

for (int i = 0; i < getExpandableListAdapter().getGroupCount(); i++) {
        getExpandableListView().collapseGroup(i);
 }