The normal way how AutoCompleteTextView shows suggestions, is that it shows only strings that begin with the text the user entered, but the sort order of the results is undefined.
Can I somehow sort them by myself?
So that when user enters e.g. “g”, I show him results beginning with “g” that are most relevant for him.
I suspect that if you implement a custom
Filterand return it as part of yourListAdapter & Filterableimplementation that you hand to theAutoCompleteTextView, that you can achieve your goal that way, but I have not tried this.