basics
How to use AutoCompleteTextView in Android?
AutoCompleteTextView is an editable text view that shows completion suggestions automatically while the user is typing. The list of suggestions is displayed in a drop down menu from which the user can choose an item. The list of suggestions is obtained from a data adapter, usually an array adapter. Let