我正在尝试添加一个搜索栏,在我输入时过滤我的数据。我正在使用合并我的列表视图的合并适配器。我将它们组合在下面的代码中,从我读过的内容中我需要添加一些文本更改侦听器方法。我是新手,所以对此有任何建议表示赞赏。谢谢!
mCombinedCompanyListAdapter是mergeAdapter
// Sets the adapter for the ListView
if (mNum != 2){
mCombinedCompanyListAdapter.addView(mSponsorsHeader, false);
mCombinedCompanyListAdapter.addAdapter(mSponsorsCursorAdapter);
}
mCombinedCompanyListAdapter.addAdapter(mAllCompaniesAdapter);
this.getListView().addHeaderView(mListCountMessage);
setListAdapter(mCombinedCompanyListAdapter);
getListView().setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
}