15

我已经实现了操作栏 SearchView ,它工作正常,但在屏幕底部显示了一个浮动文本弹出窗口。看截图:

短屏幕

ListView Java 类:

@Override
    public boolean onQueryTextChange(String newText) {

        if (TextUtils.isEmpty(newText)) {
            mListView.clearTextFilter();
        } else {

            // EventAdapterView ca = (EventAdapterView)mListView.getAdapter();
            // ca.getFilter().filter(newText.toString());

            // Filter lFilter = mDataAdapter.getFilter();
            // lFilter.filter("");
            // following line was causing the ugly popup window.
            mListView.setFilterText(newText.toString());

            // EventAdapterView ca = (EventAdapterView)mListView.getAdapter();
            // ca.getFilter().filter(newText.toString());

        }

        return true;
    }

    @Override
    public boolean onQueryTextSubmit(String query) {
        return true;
    }

适配器类

@Override
    public Filter getFilter() {
        /**
         * A filter object which will filter message key
         * */
        Filter filter = new Filter() {

            @SuppressWarnings("unchecked")
            @Override
            protected void publishResults(CharSequence constraint,
                    FilterResults results) {

                mEventUtil = (List<EventUtil>) results.values; // has the
                                                                // filtered
                                                                // values
                notifyDataSetChanged(); // notifies the data with new filtered
                                        // values. Only filtered values will be
                                        // shown on the list
            }

            @Override
            protected FilterResults performFiltering(CharSequence constraint) {

                FilterResults results = new FilterResults(); // Holds the
                                                                // results of a
                                                                // filtering
                                                                // operation for
                                                                // publishing

                List<EventUtil> FilteredArrList = new ArrayList<EventUtil>();

                if (mOriginalValues == null) {
                    mOriginalValues = new ArrayList<EventUtil>(mEventUtil); // mOriginalValues

                }

                if (mListItem == null) {
                    mListItem = new ArrayList<String>();
                    for (EventUtil message : mOriginalValues) {
                        mListItem.add(message.getEvent_Title());
                    }
                }

                /**
                 * 
                 * If constraint(CharSequence that is received) is null returns
                 * the mOriginalValues(Original) values else does the Filtering
                 * and returns FilteredArrList(Filtered)
                 * 
                 **/

                if (constraint == null || constraint.length() == 0) {

                    /*
                     * CONTRACT FOR IMPLEMENTING FILTER : set the Original
                     * values to result which will be returned for publishing
                     */
                    results.count = mOriginalValues.size();
                    results.values = mOriginalValues;
                } else {
                    /* Do the filtering */
                    constraint = constraint.toString().toLowerCase();

                    for (int i = 0; i < mListItem.size(); i++) {
                        String data = mListItem.get(i);
                        if (data.toLowerCase().contains(constraint.toString())) {
                            FilteredArrList.add(mOriginalValues.get(i));
                        }
                    }

                    // set the Filtered result to return
                    results.count = FilteredArrList.size();
                    results.values = FilteredArrList;
                }
                return results;
            }
        };
        return filter;
    }

如何删除此浮动 TextView ?

4

2 回答 2

31

尝试这个

首先禁用TextFilterEnabled您的ListView

yourListView.setTextFilterEnabled(false);

并像这样过滤您的数据:

android.widget.Filter filter = yourListAdapter.getFilter();


@Override
public boolean onQueryTextChange(String newText) {
    // TODO Auto-generated method stub
    filter.filter(newText);
    return true;
}

就是这样,搜索弹出窗口就像一个魅力

于 2013-12-04T17:41:23.710 回答
2

如果您使用的是,CursorLoader那么您应该将搜索查询存储在成员变量中以供以后使用,而不是使用适配器的过滤器:

说,

private String mSearchQuery;

然后更改加载器创建以使用搜索查询

@Override
public Loader<Cursor> onCreateLoader(final int id, final Bundle args) {
    showProgress(true);
    if (TextUtils.isEmpty(mSearchQuery)) {
        return new CursorLoader(
                mActivity,
                CONTENT_URI,
                PROJECTION,
                DEFAULT_SELECTION,
                null,
                SORT_ORDER
        );
    }
    mSearchQuery = "%" + mSearchQuery + "%";
    return new CursorLoader(
            mActivity,
            CONTENT_URI,
            PROJECTION,
            // add the filtering criteria to the default.
            DEFAULT_SELECTION + " AND " + COLUMN_A + " LIKE ?",
            new String[]{mSearchQuery},
            SORT_ORDER
    );
}

最后,确保重新加载加载器

@Override
public boolean onQueryTextChange(String newText) {
    mSearchQuery = newText;
    // calls the above method
    mActivity.getSupportLoaderManager().
            restartLoader(0, null, this);
    return true;
}
于 2014-05-15T15:13:43.033 回答