是否有可能只列出一个可扩展项?我发现了许多示例和教程如何使所有项目都可扩展的可扩展列表。
是的,您可以使用ExpandableListView和ExpandableListAdapter,然后在ExpandableList Adapter上实现getChildrenCount方法,方法如下:
@Override
public int getChildrenCount(int groupPosition) {
if(groupPosition == <THE EXPANDABLE POSITION>) {
return <number of items>
} else {
return 0;
}
}
执行此操作时,只有中的组是可扩展的。