1

ユーザーがアダプターからどの項目を選択したかを特定する必要があります (ドロップダウンの提案が表示された場合)。

ユーザーがアイテムを選択した場合、次のいずれかを取得できるようにしたい:

  • 選択された項目の場合の位置-しかし、アダプター内のすべての項目に関して位置が必要です。
  • 選択したアイテムのある種の一意の識別子
  • ユーザーが私の提案を選択せず​​、独自のテキストを入力すると、null または -1 などを受け取るだけです。

これは AutoCompleteTextView で行うことができますか?

例:

AutoCompleteTextView には、次の項目を含む標準の ArrayAdapter があります。

{"one","one2","two","two2", "three", "three2"}

ユーザーの入力

thr

彼は2つのオプションを提案されています:

スリー、スリー2

次に、「three2」を選択します。OnItemSelected が発生すると、提案が 2 つしかなかったため、「位置」パラメーターが 1 に設定されます。

ただし、アダプターには合計6つのアイテムがあるため、5の位置を取得したかったのです。

4

3 に答える 3

1

これが私が同様の問題に対して行ったことです。

アダプターを使用してオートコンプリートテキストビューを設定しています。

ここに私のPlacesAutoCompleteAdapter.javaファイルがあります

package com.inukshk.adapter;

import java.util.ArrayList;

import android.content.Context;
import android.widget.ArrayAdapter;
import android.widget.Filter;
import android.widget.Filterable;

import com.inukshk.CreateInukshk.CreateInukshk;

public class PlacesAutoCompleteAdapter extends ArrayAdapter<String> implements
        Filterable {
    private ArrayList<String> resultList;

    public PlacesAutoCompleteAdapter(Context context, int textViewResourceId) {
        super(context, textViewResourceId);
    }

    @Override
    public int getCount() {
        return resultList.size();
    }

    @Override
    public String getItem(int index) {
        return resultList.get(index);
    }

    @Override
    public Filter getFilter() {
        Filter filter = new Filter() {
            @Override
            protected FilterResults performFiltering(CharSequence constraint) {
                FilterResults filterResults = new FilterResults();
                if (constraint != null) {
                    // Retrieve the autocomplete results.

                    resultList = CreateInukshk.autocomplete(constraint
                            .toString());

                    // Assign the data to the FilterResults
                    filterResults.values = resultList;
                    filterResults.count = resultList.size();
                }
                return filterResults;
            }

            @Override
            protected void publishResults(CharSequence constraint,
                    FilterResults results) {
                if (results != null && results.count > 0) {
                    notifyDataSetChanged();
                } else {
                    notifyDataSetInvalidated();
                }
            }
        };
        return filter;
    }
}

ここでは、resultList = CreateInukshk.autocomplete(constraint .toString());を使用しました。これは、表示したい配列リストを返す私のメソッドです。

最後に、AutoCompleteTextview を初期化したメイン Java ファイルのコードを次に示します。

内部 OnCreate();

autoCompView = (AutoCompleteTextView) findViewById(R.id.editloc);
        autoCompView.setAdapter(new PlacesAutoCompleteAdapter(this,
                R.layout.list_item));
        // autoCompView.setOnItemClickListener(CreateInukshk.this);

        autoCompView.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {
                // TODO Auto-generated method stub
                            // here you can get value of arg2 as your position while selecting value.
                // Place = autoCompView.getText().toString();
                new AsyncGetAutoPlace().execute(autoCompView.getText()
                        .toString().trim());
            }
        });

new AsyncGetAutoPlace().execute(autoCompView.getText() .toString().trim());の代わりに やりたいことは何でもコードを追加できます。

それがあなたを助けることを願っています。

于 2012-10-29T12:44:22.867 に答える
0

OnItemSelectedListenerを設定しようとしましたか

于 2012-10-29T12:34:32.090 に答える
0
String str_numbers = your_autocompletetext_view.gettext();
int exact_postion;

// here your_List is a list which you have assigned for your_autocompletetext_view
for(int i0; i<your_List.size();i++)
{

    if(str_numbers.equals(your_List.get(i).toString))
     {
       exact_postion=i; // this is your exact position
        break;
  }     
}
于 2015-02-17T05:08:38.613 に答える