I have a spinner item bound to an array adapter which might have 0 or more items at any time. I want the spinner dropdown list to only show three items at a time, the rest o
Here's the ultimately simple solution.. just copy this line in Spinner tag...
android:dropDownHeight="100dp"
you can also modify width...
android:dropDownWidth="100dp"
and you know what it works on AutoCompleteTextView too and with atleast api 16...
AutoCompleteTextView