user750716 is invalid. You can populate AutoCompleteTextView with a base adapter. You just need to remember that the BaseAdapter must implement Filterable.
In the Adapter, create an ArrayList of objects. Paste getView with whatever view you want and fill it with the information objects.get (position). Implement getItem (int position) returning a string (name of the object that it clicked on)
In the same adapter add material to filter:
public Filter getFilter() { return new MyFilter(); } private class MyFilter extends Filter { @Override protected FilterResults performFiltering(CharSequence filterString) {
source share