当前位置:   article > 正文

搜索功能实现记录_java实现历史搜索记录

java实现历史搜索记录

搜索功能实现记录


1、简单效果图

在这里插入图片描述
在这里插入图片描述

2、搜索关键字高亮显示

参数:color为高亮的颜色;text为搜索的推荐词;keyword为关键字,即输入框中输入的文字。
原理就是封装一个matcherSearchTitle()的静态方法,用SpannableString去处理关键字高亮显示,处理完成后方法返回处理好的SpannableString。

/**
      * 关键字高亮变色
      *
      * @param color 变化的色值
      * @param text 文字
      * @param keyword 文字中的关键字
      * @return 结果SpannableString
      */
     public static SpannableString matcherSearchTitle(int color, String text, String keyword) {
   

         SpannableString s = new SpannableString(text);

         keyword=escapeExprSpecialWord(keyword);
         text=escapeExprSpecialWord(text);
         if (text.contains(keyword)&&!TextUtils.isEmpty(keyword)){
   
             try {
   
                 Pattern p = Pattern.compile(keyword);
                 Matcher m = p.matcher(s);
                 while (m.find()) {
   
                     int start = m.start();
                     int end = m.end();
                     s.setSpan(new ForegroundColorSpan(color), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                 }
             }catch (Exception e){
    }
         }
         return s;
     }

     /**
      * 转义正则特殊字符 ($()*+.[]?\^{},|)
      *
      * @param keyword
      * @return keyword
      */
     public static String escapeExprSpecialWord(String keyword) {
   
         if (!TextUtils.isEmpty(keyword)) {
   
             String[] fbsArr = {
    "\\", "$", "(", ")", "*", "+", ".", "[", "]", "?", "^", "{", "}", "|" };
             for (String key : fbsArr) {
   
                 if (keyword.contains(key)) {
   
                     keyword = keyword.replace(key, "\\" + key);
                 }
             }
         }
         return keyword;
     }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

3、搜索历史实现

3.1、SearchLayout.java

首先是一个自定义搜索标签布局,maxLine控制标签栏最大行数。

public class SearchLayout extends ViewGroup {
   

    //存储所有子view
    private List<List<View>> mAllChildViews = new ArrayList<>();
    private int maxLine = 2;

    //每一行的高度
    private List<Integer> mLineHeight = new ArrayList<>();

    public SearchLayout(Context context){
   
        this(context,null);
    }
    public SearchLayout(Context context, AttributeSet attrs){
   
        this(context,attrs,0);
    }
    public SearchLayout(Context context,AttributeSet attrs,int defStyle){
   
        super(context,attrs,defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec,int heightMeasureSpec){
   
        //父控件传进来的宽度和高度以及对应的测量模式
        int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
        int modeWidth = MeasureSpec.getMode(widthMeasureSpec)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/860217
推荐阅读
相关标签
  

闽ICP备14008679号