Reputation: 1638
There a method to set threshold to 1. so that whenever user types a single character, match will be found and it displays drop down.
But what I really want here is, all items should be listed when I tap the "multiautocompletetextview". (just like a spinner.)
I cannot set threshold to zero or less than zero, if I set so that will be changed to 1.
Upvotes: 0
Views: 590
Reputation: 76536
Call showDropDown()
in your onCreate()
http://developer.android.com/reference/android/widget/AutoCompleteTextView.html#showDropDown()
Displays the drop down on screen.
Upvotes: 3