android 局部文字变色

2018-05-16  本文已影响0人  小婷婷tt

public static SpannableString getColorTextByKeywords(String text,int colorId, String keyword) {

SpannableString ss =new SpannableString(text);

int start = text.indexOf(keyword);

int end = start + keyword.length();

if (start != -1 && end != -1) {

//用颜色标记文本

        ss.setSpan(new ForegroundColorSpan(colorId), start, end,

//setSpan时需要指定的 flag,Spanned.SPAN_EXCLUSIVE_EXCLUSIVE(前后都不包括).

                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

}

return ss;

}

调用举例:tv_name.setText(StringUtil.getColorTextByKeywords(name,mContext.getResources().getColor(R.color.tabtext_color),mKey));

上一篇 下一篇

猜你喜欢

热点阅读