I'm working with the newest Android SDK and I want to filter my ListView
which represents a list of different plants, with CheckBoxes
.
In my list I have 800 Items with different attributes (e.g. color, size, edibility), and the CheckBoxes
should filter the list in a subtractive way. Only the list items/views which match all attributes should be visible - all other rows should be invisible(the program should work like the filtering system on www.pilzsuchmaschine.de).
I tried to modify the getView()
of my custom ArrayAdapter
but I didn't get the right idea how to do that properly. Does anyone have a solution?
My ArrayAdapter
is pretty the same as this one.