I add TextChangedListener to AutocompleteTextView. In TextChangedListener's afterTextChanged I invoke Asynctask which loads data from web (loading all the data when activity starts is not an option because lists can be pretty large, so it becomes just waste of traffic). Asynctask's onPostExecute looks like that (I use array adapter):
@Override
protected void onPostExecute(ArrayList<Subregion> result)
{
super.onPostExecute(result);
if (result != null)
{
adapter.clear();
for (Iterator<Subregion> iterator = result.iterator(); iterator.hasNext();)
{
Subregion subregion = iterator.next();
adapter.add(subregion);
}
adapter.notifyDataSetChanged();
autocompleteTextView.showDropDown();
}
}
Subregion is my custom object with overriden toString(). I want my program to start loading data when user starts typing and show results at once they are received and parsed.
My problem: autocompleteTextView.showDropDown() has no effect. onPostExecute receives correct list of data, they are added to adapter, but showDropDown() doesn't show the dropdown. What's the matter?
