I have an AutoCompleteTextView
in my application, but there is a lot more behind every item in the DropDownMenu
than what is displayed.
I have my own ArrayAdapter
for the AutoCompleteTextView
, and when the user starts typing anything the autocompleteTextView starts to reduce the drop down list. This is what I want to change. Every time the user types a new letter, I´m making a new search from the database
and would like to show all of those in the drop down menu that pops up, i.e I dont want the autocompleteTextView
to reduce the list due to what the user is typing.
So, my question is, is there a way to block an autocompleteTextView from reducing the results, or is it easier to just do an edit text view with my own drop down menu?
Thanks.