我已经实现了操作栏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?
答案 0 :(得分:29)
试试这个
首先在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;
}
就是这样,搜索弹出就像一个魅力
答案 1 :(得分: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;
}