> So this is a response to another thread, that I never got a reaction on. > Hopefully someone can give a hand. > I have a AutoCompleteTextView with a CursorAdapter with data. I need to be > able to set a text in the AutoCompleteTextView programmatically without > the > autocomplete mechanism kicking in. > If I use *setText *on the AutoCompleteTextView it will start the > autocomplete. > I tried calling *dismissDropDown() after setText, but this dosnt work > because the drop down is not shown yet.* > ** > Any ideas?
Have you tried calling setText() before attaching the ListAdapter to the AutoCompleteTextView? -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

