Immediately show autocomplete on Android

后端 未结 6 2244
鱼传尺愫
鱼传尺愫 2021-02-19 05:39

The Android autocomplete only starts after two letters. How can I make it so the list appears when the field is just selected?

6条回答
  •  佛祖请我去吃肉
    2021-02-19 06:26

    For people who want to change threshold using SearchView you have to use:

    SearchView.SearchAutoComplete complete = (SearchView.SearchAutoComplete)search.findViewById(R.id.search_src_text);
    complete.setThreshold(0);
    

提交回复
热议问题