AutoCompleteTextView in Android
AutoCompleteTextView is an editable text view that shows completion suggestions. It provides suggestions automatically when the user is typing. Suggestion will be shown in dropdown from where user can select any item and replace the content of editbox.
User can dismiss dropdown by pressing back button or by selecting any item from the list. Suggestions will be based on the value given in adapter. Continue Reading →