当我的详细信息在Android中的LinkedHashMap中时,如何过滤ExpandableListView

时间:2016-11-28 10:12:08

标签: java android listview arraylist

我是新手用户,我尝试在ExpandableListView上创建搜索但我的详细信息不仅仅是一个arraylist 来自{{1}并保存在

JSONObject

遵循唯一的链接教程http://www.mysamplecode.com/2012/11/android-expandablelistview-search.html

我有以下结构:

LinkedHashMap<String, ArrayList<LinkedHashMap<String, String>>>

但如何迭代public void filterData(String query) { query = query.toLowerCase(); expListTitle.clear(); if (query.isEmpty()) { expListTitle.addAll(expListTitle); } else { for (String titles : expListTitle) { ... } } notifyDataSetChanged(); } 并再次与我的标题连接?

0 个答案:

没有答案