I'm using an AutoCompleteTextView. I type some text, get the dropdown ListView which contains the TextView rows supplied by my Adapter. So far so good. Now I scroll down and select an item at the bottom of the list, which displays said item in the edit area. Great. Now I remove this text and type in some different text and get a new dropdown list--only this time the list is already scrolled down about halfway.
It's as if AutoCompleteTextView is remembering the last place I scrolled to and starts me off there on the next use.
How do I change this behavior?
-S

