美文网首页Android问题汇总(遥远的回忆过去)
Android关键字高亮、关键字背景、是否忽略大小写的相关处理

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

作者: MonkeyLei | 来源:发表于2019-08-07 09:16 被阅读8次

    一直也是用这个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

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

    相关文章

      网友评论

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

        本文链接:https://www.haomeiwen.com/subject/ztundctx.html