Im using a Filter for an ArrayAdapter
. Now I would like to have following Feature:
For Example my Listview contains the word käuflich
and the search Input is kauf
, käuflich
should be displayed as result. So ö,ä,ü should be replaced additionally by o,a,u.
Is this possible?
This is my simple filter
public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
// When user changed the Text
Activity.this.adapter.getFilter().filter(cs);
}
Thanks