Android搜索结果显示高亮实例(有数据滑动底部自动刷新)
程序员文章站
2023-03-28 11:43:42
首先的效果图
搜索到结果(这里我只是模拟数据,真正和服务器走得时候,返回来的数据都应该包含关键字的)
模拟的没有搜索结果的界面
具体实现
在这插一句哈,就是...
首先的效果图
搜索到结果(这里我只是模拟数据,真正和服务器走得时候,返回来的数据都应该包含关键字的)
模拟的没有搜索结果的界面
具体实现
在这插一句哈,就是做一件事情,拆分成多个小结,不至于在开发的时候摸不着头脑而且还能把控开发的进度.
思路其实很简单,我们监听输入框的变化,然后在文字变化之后去请求服务器,然后取到我们需要的结果,进行数据展示即可.
第一步:搜索框的监听
et_search.addtextchangedlistener(new textwatcher() { @override public void beforetextchanged(charsequence s, int start, int count, int after) { } /** * 当搜索框中的文字发生变化的时候回调此方法 * @param charsequence 输入框的文字 * @param start 开始 * @param before * @param count 字数 */ @override public void ontextchanged(charsequence charsequence, int start, int before, int count) { //在这里进行逻辑请求 } @override public void aftertextchanged(editable s) { } });
第二步:进行相关逻辑请求
``` if (!textutils.isempty(charsequence) && charsequence.length() > 3) { //这里的3只是为了模拟请求 mkey = charsequence.tostring(); initdata(charsequence.tostring()); changestates(state); } else { state = no_tthing; changestates(state); } /** * 首次获取数据 * * @param key 高亮值 */ private void initdata(string key) { //这里是模拟网络请求的 实际就是走网络获取数据 string result = jsonutils.getjson(this, "search.json"); gson gson = new gson(); searchbean searchbean = gson.fromjson(result, searchbean.class); if (searchbean != null) { mdatabeen = searchbean.getdata(); if (mdatabeen != null && mdatabeen.size() > 0) { state = show_data; msearchadapter.loaddata(mdatabeen, key); } else { state = no_tthing; } } else { state = no_tthing; } } /** * 改变搜索状态 * * @param state 搜索key值 */ private void changestates(int state) { switch (state) { case no_tthing: mnolayout.setvisibility(view.visible); recycler_view.setvisibility(view.invisible); break; case show_data: mnolayout.setvisibility(view.gone); recycler_view.setvisibility(view.visible); break; } }
第三步:进行变色
/** * @param context 上下文 * @param wholestr 全部文字 * @param highlightstr 改变颜色的文字 * @param color 颜色 */ public stringformatutil(context context, string wholestr, string highlightstr, int color) { this.mcontext = context; this.wholestr = wholestr; this.highlightstr = highlightstr; this.color = color; } /** * 填充颜色 * * @return stringformatutil */ public stringformatutil fillcolor() { if (!textutils.isempty(wholestr) && !textutils.isempty(highlightstr)) { spbuilder = new spannablestringbuilder(wholestr); //匹配规则 pattern p = pattern.compile(highlightstr); //匹配字段 matcher m = p.matcher(spbuilder); //上色 color = mcontext.getresources().getcolor(color); //开始循环查找里面是否包含关键字 使得一句话中出现多个关键词都会被高亮 while (m.find()) { int start = m.start(); int end = m.end(); spbuilder.setspan(new foregroundcolorspan(color), start, end, spanned.span_exclusive_exclusive); } return this; } return null; } /** * 获取到已经更改好的结果(这个时候已经实现了高亮,在获取这个result的时候不要tostring()要不然会把色调去除的) * * @return result */ public spannablestringbuilder getresult() { if (spbuilder != null) { return spbuilder; } return null; } // 进行工具类使用,也就是在给title赋值的时候使用 //这个是adapter里面的使用规则 mformatutil = new stringformatutil(holder.itemview.getcontext(), databean.gettitle(), mlightstr, r.color.coloraccent).fillcolor(); holder.tv_title.settext(mformatutil.getresult()); ```
demo说明
这里的本地的json是我自己人为定义的,而且在搜索的时候加入了自己的逻辑,如果是实际工程中需要自己根据自己的需求来进行变更的.相关显示不需要在意,这里只是给大家一个实现搜索的并且关键词高亮的一个思路。
demo代码传送门:https://github.com/*nlei/searchviewdemo
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。