Android关键字高亮、关键字背景、是否忽略大小写的相关处理

一直也是用这个Textview关键字高亮的相关处理,经过一些个需求变化,这里记录下这个工具类,以后备用:

HighLightKeyWordUtil.java

import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.ForegroundColorSpan;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class HighLightKeyWordUtil {
    /**
     * @param color 关键字颜色
     * @param text 文本
     * @param keyword 关键字
     * @return
     */
    public static SpannableString getHighLightKeyWord(int color, String text, String keyword, boolean ignoreCase) {
        SpannableString s = new SpannableString(text);
        String wordReg = keyword;
        if (ignoreCase){
            wordReg = "(?i)"+ keyword;    ///< 用(?i)来忽略大小写
        }
        Pattern p = Pattern.compile(wordReg);
        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);
        }
        return s;
    }

    /**
     * @param color 关键字颜色
     * @param text 文本
     * @param keyword 多个关键字数组
     * @return
     */
    public static SpannableString getHighLightKeyWord(int color, String text,String[] keyword, boolean ignoreCase) {
        SpannableString s = new SpannableString(text);
        for (int i = 0; i < keyword.length; i++) {
            String wordReg = keyword[i];
            if (ignoreCase){
                wordReg = "(?i)"+ keyword[i];    ///< 用(?i)来忽略大小写
            }
            Pattern p = Pattern.compile(wordReg);
            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);
            }
        }
        return s;
    }

    /**
     * @param color 关键字背景颜色
     * @param text 文本
     * @param keyword 关键字
     * @return
     */
    public static SpannableString getBackgroudKeyWord(int tvcolor, int color, String text, String keyword) {
        SpannableString s = new SpannableString(text);
        Pattern p = Pattern.compile(keyword);
        Matcher m = p.matcher(s);
        //while (m.find()) {
        if (m.find()) {
            int start = m.start();
            int end = m.end();
            s.setSpan(new RoundBackgroundColorSpan(color, tvcolor, 10), start, end,
                    Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        }
        return s;
    }

    /**
     *
     * @param tvcolor 关键字颜色
     * @param color   关键字背景颜色
     * @param text    文本
     * @param keywords 多个关键字数组
     * @return
     */
    public static SpannableString getBackgroudKeyWord(int tvcolor, int color, String text, String[] keywords) {
        SpannableString s = new SpannableString(text);
        for (int i = 0; i < keywords.length; i++) {
            Pattern p = Pattern.compile(keywords[i]);
            Matcher m = p.matcher(s);
            //while (m.find()) {
            if (m.find()) {
                int start = m.start();
                int end = m.end();
                s.setSpan(new RoundBackgroundColorSpan(color, tvcolor, 10), start, end,
                        Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            }
        }
        return s;
    }

    /**
     *
     * @param tvcolor 关键字颜色数组
     * @param color 关键字背景颜色数组
     * @param s SpannableString
     * @param keywords 多个关键字数组
     * @return
     */
    public static SpannableString getBackgroudKeyWord(int[] tvcolor, int[] color, SpannableString s, String[] keywords) {
        int strLength = 0;
        for (int i = 0; i < keywords.length; i++) {
            ///< 必须是开头的才标记背景,所以索引必须小于开头内容长度
            strLength += keywords[i].length();

            Pattern p = Pattern.compile(keywords[i]);
            Matcher m = p.matcher(s);
            ///< 只找开头的,标题中的不找
            //while (m.find()) {
            //if (m.find()) {
            if (m.find() && m.start() < strLength) {
                int start = m.start();
                int end = m.end();
                s.setSpan(new RoundBackgroundColorSpan(color[i], tvcolor[i], 10), start, end,
                        Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            }
        }
        return s;
    }

    /**
     *
     * @param tvcolor 关键字颜色数组
     * @param color  关键字背景颜色数组
     * @param text   文本
     * @param keywords 多个关键字数组
     * @return
     */
    public static SpannableString getBackgroudKeyWord(int[] tvcolor, int[] color, String text, String[] keywords) {
        SpannableString s = new SpannableString(text);
        int strLength = 0;
        for (int i = 0; i < keywords.length; i++) {
            ///< 必须是开头的才标记背景,所以索引必须小于开头内容长度
            strLength += keywords[i].length();

            Pattern p = Pattern.compile(keywords[i]);
            Matcher m = p.matcher(s);
            ///< 只找开头的,标题中的不找
            //while (m.find()) {
            //if (m.find()) {
            if (m.find() && m.start() < strLength) {
                int start = m.start();
                int end = m.end();
                s.setSpan(new RoundBackgroundColorSpan(color[i], tvcolor[i], 10), start, end,
                        Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            }
        }
        return s;
    }
}

注意一下大小写的处理

image

注意一下关键字背景高亮只处理字符串开始出现的关键字的情况:

image

其中: RoundBackgroundColorSpan.java

package com.lieyunwang.app.common.utils.textview;

import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.text.style.ReplacementSpan;

/*
 *@Description: 字体添加圆角背景
 *@Author: hl
 *@Time: 2018/7/10 11:34
 */
public class RoundBackgroundColorSpan extends ReplacementSpan {
    private int bgColor;
    private int textColor;
    private int mSize;
    private int radius;

    public RoundBackgroundColorSpan(int bgColor, int textColor, int radius) {
        super();
        this.bgColor = bgColor;
        this.textColor = textColor;
        this.radius = radius;
    }

    @Override
    public int getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) {
        //设置宽度为文字宽度加16dp
        return (mSize = (int) (paint.measureText(text, start, end) + 2 * radius));
    }

    @Override
    public void draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) {
        int originalColor = paint.getColor();
        paint.setColor(this.bgColor);
        paint.setAntiAlias(true);// 设置画笔的锯齿效果
        //画圆角矩形背景
        RectF oval = new RectF(
                x > 5 ? (x - 5) : x,
                (y + paint.ascent()) > 5 ? ((y + paint.ascent()) - 5): (y + paint.ascent()),
                x + mSize + 5,
                y + paint.descent() + 5);
        //设置文字背景矩形,x为span其实左上角相对整个TextView的x值,y为span左上角相对整个View的y值。paint.ascent()获得文字上边缘,paint.descent()获得文字下边缘
        canvas.drawRoundRect(oval, radius, radius, paint);//绘制圆角矩形,第二个参数是x半径,第三个参数是y半径
        paint.setColor(this.textColor);
        //画文字
        canvas.drawText(text, start, end, x + radius, y, paint);
        //将paint复原
        paint.setColor(originalColor);
    }
}

使用示例:

((TextView) getView(viewId)).setText(HighLightKeyWordUtil.getBackgroudKeyWord(
                new int[]{Color.parseColor("#ffffff"), Color.parseColor("#ffffff")},
                new int[]{Color.parseColor("#febc48"), Color.parseColor("#f13b2f")},
                content, new String[]{"独家", "首发"}));

效果:


image.png

具体可以根据实际需求进行修改和完善即可....代码不是特别精简,可以考虑优化下,提出共用方法。小白觉得还好就懒得提了....

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容