Android:获取ExpandableListView中的组数量?

时间:2011-05-20 11:41:38

标签: java android user-interface expandablelistview

有没有办法获得ExpandableListView中的组数?或者我必须“记住”我添加了多少组项目?

1 个答案:

答案 0 :(得分:14)

您可以通过ExpandableListView的适配器获取群组计数:

ExpandableListView v;
[...]
final int groupCount = v.getExpandableListAdapter().getGroupCount();