MultiLevelExpandableIndentableListView icon indicating copy to clipboard operation
MultiLevelExpandableIndentableListView copied to clipboard

is there a way to start with a collapsed listview and then expand on click?

Open albert0m opened this issue 9 years ago • 2 comments

by default you see all the expanded rows and I would like to change this behavior.

albert0m avatar Nov 23 '15 17:11 albert0m

for (int i = comments.size(); i > 0; i--) {

            if (mAdapter.getItemAt(i).getChildren().size() > 0) {

                mAdapter.collapseGroup(i);
            }

        }

ArslanAli7 avatar Apr 09 '16 09:04 ArslanAli7

it will collapse by default

ArslanAli7 avatar Apr 09 '16 09:04 ArslanAli7