I am trying to implement a getFilter() on a base adapter to filter out search results on a List. Is there any example of how to implement a getFilter()?
MainActivity
You need to return an instance of a Filter. To write a filter, subclass Filter and implement performFiltering and publishResults. See the docs.
Filter
performFiltering
publishResults