How may I get all children of an item of ListView ? There are methods to get child at position but I was not able to find any method which returns collectio
ListView
You get all list item from list adapter through iteration as below
for (int i=0;i
Update : You can compare specific item using index with list adapter all items as below :