i have a problem with AutoCompleteTextView.
I use it in several activities, it works just fine with all of them but one, which is a dialog themed activity.
in this specific activity, the suggestion list doesn't show at all
this is my code:
<AutoCompleteTextView android:layout_height="wrap_content" android:id="@+id/etTesterName" android:completionThreshold="1" android:gravity="center" android:layout_width="fill_parent" android:layout_weight="1"></AutoCompleteTextView>
mTestersList = new ArrayList<Testers>();
mAdapter = new ArrayAdapter<Testers>(this, android.R.layout.simple_dropdown_item_1line, mTestersList);
((AutoCompleteTextView) findViewById(R.id.etTesterName)).setAdapter(mAdapter);
...
mTestersList = result;
mAdapter.notifyDataSetChanged();
mTestersList, is a list of Testers class which has the toString() overrided. this code works for all my activities but the dialog themed on..anyone has an idea why?
Vlad