MultiLevelExpandableIndentableListView
MultiLevelExpandableIndentableListView copied to clipboard
is there a way to start with a collapsed listview and then expand on click?
by default you see all the expanded rows and I would like to change this behavior.
for (int i = comments.size(); i > 0; i--) {
if (mAdapter.getItemAt(i).getChildren().size() > 0) {
mAdapter.collapseGroup(i);
}
}
it will collapse by default