本文介绍了如何检查组是否在Android ExpandableListView中展开或折叠?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找像isExpanded()或isCollapsed()这样的api,它们告诉我某个组是展开还是折叠。
I'm looking for an api like isExpanded() or isCollapsed() that tell me if a group is expanded or collapsed.
推荐答案
您可以使用 isGroupExpanded
。
You can use isGroupExpanded
.
expListViewObj.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() {
@Override
public boolean onGroupClick(ExpandableListView parent, View v,
int groupPosition, long id) {
if(parent.isGroupExpanded(groupPosition))
{
// Do your Staff
}
else{
// Expanded ,Do your Staff
}
return false;
}
});
有关更多详细信息,请访问此处
For more details you can visit Here
这篇关于如何检查组是否在Android ExpandableListView中展开或折叠?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!