tags:

views:

21

answers:

1

I am using AutoCompleteTextView and want to limit the number of dropdown items visible at a time on screen. Currently it fills up the screen but can i limit it to say 2 items with a scroll bar for displaying more.

A: 

Got it .. simply by calling .setDropDownHeight(int height) method of AutoCompleteTextView :)

mob_king