1

我需要确定用户选择了适配器中的哪个项目(出现下拉建议时)。

如果用户选择项目,我希望能够获得:

  • 如果选定项目的位置-但我需要相对于适配器中的所有项目的位置
  • 所选项目的某种唯一标识符
  • 如果用户没有选择我的任何建议并键入他自己的文本,我只会收到 null 或 -1 或其他内容。

这可能与 AutoCompleteTextView 有关吗?

例子:

我的 AutoCompleteTextView 有标准的 ArrayAdapter,其中包含以下项目:

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

用户输入

thr

他被建议2个选项:

三,三2

然后他选择“three2”。当 OnItemSelected 被触发时,“位置”参数设置为 1,因为只有 2 个建议。

但是,我想要的是获得 5 的位置,因为我的适配器共有 6 个项目。

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()); 这是我的方法,它将返回我想要显示的数组列表。

最后这是我在主java文件中的代码,我已经初始化了我们的AutoCompleteTextview。

内部 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 回答