How can I avoid autocomplete dropdown appearing when text is programmatically set?

后端 未结 5 1746
说谎
说谎 2021-02-07 04:16

I have an AutoCompleteTextView in my layout. I also have an alternative way to select the same items which are present in the AutoCompleteTextView. When the alternative way is

5条回答
  •  情话喂你
    2021-02-07 04:49

    This works fine for me and is less complex:

    ListAdapter adapter = autoCompleteTextView.getAdapter();
    autoCompleteTextView.setAdapter(null);
    autoCompleteTextView.setText("whatever");
    autoCompleteTextView.setAdapter(adapter);
    

提交回复
热议问题