Re: [android-developers] Diacritics/international characters in AutoCompleteTextView

2011-02-02 Thread Kostya Vasilyev
You could implement your own filter, by overriding getFilter() in your adapter, and implementing a Filter that does what you want. http://developer.android.com/reference/android/widget/Filterable.html#getFilter() (various adapter classes implement Filterable) http://developer.android.com/refer

[android-developers] Diacritics/international characters in AutoCompleteTextView

2011-02-01 Thread svebee
I have a (array) list Car Something Šibica Čavao Cavao Is there a way to "force" AutoCompleteTextView so if user type in letter "c" it would show Car Čavao Cavao so it would show standard letter and international letter (C and Č/Ć, S and Š, Z and Ž, D and Đ). -- You received this message beca