我使用工具栏搜索查看。我使用代码来捕获输入结果:
SearchView.OnQueryTextListener queryTextListener = new SearchView.OnQueryTextListener() {
public boolean onQueryTextChange(String newText) {
return true;
}
当我得到结果时,我在excel文件中寻找类似的字符串。然后我返回ArrayList(搜索结果)。现在我需要在SearchView中显示结果。我该怎么做?
答案 0 :(得分:1)
您需要使用与搜索视图关联的CursorAdapter。
Searchview.setSuggestionAdapter
有关使用数组中游标的有用链接(Create a cursor from hardcoded array instead of DB)。