I have an AutoCompleteTextView in my layout. I also have an alternative way to select the same items which are present in the AutoCompleteTextView. When the alternative way is
Looks like its a problem of the order how messages are processed. My work around looks like this:
//autoCompleteTextView.dismissDropDown(); new Handler().post(new Runnable() { public void run() { autoCompleteTextView.dismissDropDown(); }});