Autocomplete textbox highlighting the typed character in the suggestion list
问题 I have been working on AutoCompleteTextView . I was able to get the suggestion and all in the drop down list as we type. My question is: Can we highlight the typed character in the suggestion drop down list? 回答1: I have achieved the functionality. The solution is as follows: AutoCompleteAdapter.java public class AutoCompleteAdapter extends ArrayAdapter<String> implements Filterable { private ArrayList<String> fullList; private ArrayList<String> mOriginalValues; private ArrayFilter mFilter;