[android-developers] Re: Autocomplete with suggestions in Custom Dialog

2010-08-11 Thread titleist
Thanks, my quickfind now works. I will correct names in my appplication, it will even look better :) Regards, Tadej On 11 avg., 19:27, viktor wrote: > This code: ArrayAdapter adapter = new > ArrayAdapter(this, R.layout.list_item, COUNTRIES); > > Be carefully, if you use autocomplete in Dialog,

[android-developers] Re: Autocomplete with suggestions in Custom Dialog

2010-08-11 Thread viktor
This code: ArrayAdapter adapter = new ArrayAdapter(this, R.layout.list_item, COUNTRIES); Be carefully, if you use autocomplete in Dialog, you should passing Context as 1st arg of constructor, ArrayAdapter(Context, R.layout.list_item, COUNTRIES)() Please read Java Code Style, How did you compile y