I am developing an app with an ArrayAdapter<String> abc;
For this adapter need to use a filter:
abc.getFilter().filter("*#*");
This is working fine, but now I need to reverse this filter (so that I only see the items which do NOT start with #
, how can I do this?