如何知道ExpandableListView父项是否已扩展?我正在使用带有按钮的ExpandableList实现“不常见”的实现,这将扩展\ collapse父项。我没有看到任何布尔方法告诉这个父项是否已扩展。
答案 0 :(得分:2)
您可以在ExpandableListAdapter的getGroupView中获得展开/折叠状态:
getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)
或在ExpandableListView调用isGroupExpanded()
boolean isGroupExpanded(int groupPosition)