1

我正在尝试将 AutoCompleteTextView 设置为 ListView 标头,但如果我这样做,自动完成框永远不会出现。创建自动完成视图的代码直接来自谷歌文档中的Hello, AutoComplete教程。COUNTRIES 数组也来自那里。

protected void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

ListView myList = (ListView) findViewById(R.id.ResultList);

LayoutInflater layoutInflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
TableLayout searchHeader = (TableLayout) layoutInflater.inflate(R.layout.search_header, null); 
myList.addHeaderView(searchHeader, null, false);

final AutoCompleteTextView textView = (AutoCompleteTextView) myList.findViewById(R.id.edit);
ArrayAdapter<String> searchAdapter = new ArrayAdapter<String>(this,
        android.R.layout.simple_dropdown_item_1line, COUNTRIES);
textView.setAdapter(searchAdapter);
textView.setThreshold(1);

        //Dummy data for listview.

String[] listContent = {
        "test", "test", "test", "test",
        "test", "test", "test", "test"
};
ArrayAdapter<String> adapter = new SearchResultAdapter(this, listContent);
myList.setAdapter(adapter);

}

作为测试,我添加了一个 TextChangedListener 来尝试强制显示对话框

    textView.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
        }

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

        @Override
        public void afterTextChanged(Editable s) {
            textView.showDropDown();
        }
    });

对话框出现但几乎立即关闭。我想知道列表视图中的某种事件是否会导致这种情况?

4

2 回答 2

6

这个关于 ListView 中 EditText 视图焦点的问题以及对 AutoCompleteTextView 源的一些阅读帮助我找到了答案。将 ListView 上的焦点顺序设置为 afterDescendants 允许对话框正常显示。

<ListView
    android:id="@+id/ResultList"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginBottom="50dip"
    android:descendantFocusability="afterDescendants"
    android:fadingEdge="none" >
</ListView>
于 2013-02-07T06:41:18.597 回答
0

在您的 XML 文件中使用 autocompletetextview 可能会有所帮助

于 2014-09-26T08:05:34.803 回答