Pergunta

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.

Foi útil?

Solução

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

            if (!list.get(i).isExpanded()
                    && list.get(i).getWrappedObject().getLevel() != 0) {
                list.get(i).toggle();
            }
        }
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top