There is a moment in my app, that I need to force to show all items in the suggestion list, no matter what the user has typed. How can I do that?
I tried to do somet
Simple and easy answer is:
after autoCompleteTextView.setText("") simply remove filter from adapter like this:
autoCompleteTextView.setText("")
autoCompleteTextView.adapter.filter.filter(null)
thats it, filtering is gone and whole dropdown list is shown.