3

TextWathcer を使用してテキストが変更されるたびに、autoCompleteTextview ArrayAdapter を動的に更新しようとしています。

テキストが変更されるたびに、新しい AsyncTask に http 要求があり、非同期タスク (onPostExecute) からのコールバックに、アダプターから clear() を呼び出し、新しい項目を追加してから、notifyDataSetChanged を呼び出します。残念ながら、オートコンプリートのドロップダウンは表示されません..

どこに行くの?

コードは次のとおりです。

AutoCompleteTextView acCountry = (AutoCompleteTextView)layout.findViewById(R.id.autoComplete);
final ArrayAdapter<RMAutoComplete.ListItem> countriesAdapter = new ArrayAdapter<RMAutoComplete.ListItem>(this.context,android.R.layout.simple_dropdown_item_1line);
acCountry.addTextChangedListener(new TextWatcher() {

            public void onTextChanged(CharSequence s, int start, int before, int count) {
                if (s.length() > 1)
                {
                    new AsyncTask<String, Void, List<RMAutoComplete.ListItem>>(){

                        @Override
                        protected List<ListItem> doInBackground(String... params) {
                            List<ListItem> l = null;
                            try {
                                l = location.getCountryData(params[0]);
                            } catch (Exception e) {
                                Log.e(TAG,"error when getCountryData",e);
                            }
                            return l;
                        }

                        @Override
                        protected void onPostExecute(List<ListItem> countries) {
                            countriesAdapter.clear();
                            if (countries != null)
                                for (ListItem listItem : countries) {
                                    countriesAdapter.add(listItem);
                                }
                            countriesAdapter.notifyDataSetChanged();
                        }
                    }.execute(s.toString());
                }
            }

            public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

            public void afterTextChanged(Editable s) {}
        }
    );
4

1 に答える 1

3

よくある間違い: アダプターを に設定しましたacCountryか?

于 2011-11-23T14:03:40.313 に答える