Domanda

I want to implement search functionality in multi level Expandable list view. The hierarchy should expand during Search has progressed.

Can anyone plz help me to do this?

Thanks in Advance.

È stato utile?

Soluzione

for (int i = 0; i < list.size(); i++) {

            if (!list.get(i).isExpanded()
                    && list.get(i).getWrappedObject().getLevel() != 0) {
                list.get(i).toggle();
            }
        }
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top