I have an AutoCompleteTextView that dynamically updates the list of suggestions as the user types. My problem is that as I type the list gets updated but the dr
AutoCompleteTextView
It could have something to do with autoText.showDropDown() not being called in main thread. maybe you can try to do this instead:
autoText.showDropDown()
autoText.getHandler().post(new Runnable() { @Override public void run() { autoText.showDropDown(); } })