我查看了以下网站:ListView Example
其中描述了如何在使用默认适配器的列表视图中实现搜索功能,并且效果很好.
如何修改它,以便可以将其用于列表视图的自定义适配器?
部分代码为:
dataList = (ListVIEw) findVIEwByID(R.ID.lvfiles); tvQuote = (TextVIEw) findVIEwByID(R.ID.tvdisplay); tvQuote.setTypeface(Typeface.createFromAsset(MainActivity.this.getAssets(), "Fonts/roboto.ttf")); for (int y=0; y<strnamesOfAllah.length;y++) { name = strnamesOfAllah[y]; meaning = strMeaning[y]; rowsArray.add(new SetRows(R.drawable.icon, name, meaning)); } adapter = new SetRowsCustomAdapter(MainActivity.this, R.layout.customList, rowsArray); dataList.setAdapter(adapter); dataList.setClickable(true);
解决方法:
您需要覆盖适配器内部的getFilter并返回您创建的新的customFilter对象.看到这个答案:No results with custom ArrayAdapter Filter
编辑:
@OverrIDe public Filter getFilter() { if(customFilter == null){ customFilter = new CustomFilter(); } return customFilter; }
总结 以上是内存溢出为你收集整理的java-如何使用自定义适配器在ListView中搜索全部内容,希望文章能够帮你解决java-如何使用自定义适配器在ListView中搜索所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)