I have my adapter that extend a class MatchableArrayAdapter that i've found on the internet.
The class allows me to have a complex layout for my list view (layout that is not only Textview, but several layout and textViews).
I have this complex layout because I'm using object with several data inside it (so I can on the same item display a name, an ID...)
So i'm passing an ArrayList of object from my fragment to my adapter.
What I want is this :
I want to add a searchView that will filter on any of the object properties (filter on ID, name, location...)
Any idea how to do that ? I've found that I need to use Filterable but I don't understand why...