4

您好 Android 开发者,

我遇到了 Android SearchView小部件的问题。我要做的是将“实时”文本过滤器附加到我的 ListView (文本输入会自动刷新过滤器结果)。它实际上工作得很好,用这些行让它在我的 ListActivity 上工作并不费力:

private SearchView listFilter;

this.listFilter = (SearchView) findViewById(R.id.listFilter);
this.listFilter.setOnQueryTextListener(this);
this.listFilter.setSubmitButtonEnabled(false);

this.getListView().setOnItemClickListener(this);
this.getListView().setTextFilterEnabled(true);

// from OnQueryTextListener
public boolean onQueryTextChange(String newText) {
    if (newText.isEmpty()) {
        this.getListView().clearTextFilter();
    } else {
        this.getListView().setFilterText(newText);
    }
    return true;
}

这里是 xml 小部件声明

<SearchView
    android:id="@+id/listFilter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:iconifiedByDefault="false"
    android:queryHint="enter text to filter" />

现在我的问题是,每次我在 SearchView 中输入文本时,都会立即弹出一个奇怪的文本字段,显示与我刚输入的文本相同的文本,这有点没用,因为我可以在 SearchView 本身中看到我的输入,并且它部分阻止了看到我的列表条目,这很烦人。

有什么方法可以防止在输入 SearchView 时弹出该文本字段?我在 xml 定义的小部件选项和 java 类引用上都找不到任何属性。

我知道还有另一种方法可以通过使用 EditText 和 TextWatcher 来提供过滤器功能,但是我必须自己处理过滤器,并且无法从 SearchView 为我处理它中获利。

任何建议表示赞赏。此致

菲利克斯

4

1 回答 1

5

我发现了如何摆脱那个丑陋的弹出窗口。诀窍是直接使用过滤器。下面的代码假设您已经在 customAdapter 中实现了可过滤。

public boolean onQueryTextChange(String newText) {
    if (TextUtils.isEmpty(newText)) {
       m_listView.clearTextFilter();
    } else {
       ContactsAdapter ca = (ContactsAdapter)lv.getAdapter();
       ca.getFilter().filter(newText);
       //following line was causing the ugly popup window.
       //m_listView.setFilterText(newText);
    }
   return true;
}
于 2012-05-22T20:05:09.117 回答