码迷,mamicode.com
首页 > 其他好文 > 详细

一个TextView使用不同的颜色

时间:2015-07-16 19:38:41      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

一个TextView使用不同的颜色:

textview中首先需要已经有内容了

public static void ColorFormatTextView(TextView tv,int color,String textStr){
        if (TextUtils.isEmpty(textStr) || tv == null
                || TextUtils.isEmpty(tv.getText())) {
            return;
        }
        String showString = tv.getText().toString();
        int startIndex = showString.indexOf(textStr);
        if (startIndex < 0) {
            return;
        }
        ForegroundColorSpan style = new ForegroundColorSpan(color);
        SpannableStringBuilder formatted = new SpannableStringBuilder(
                showString);
        formatted.setSpan(style, startIndex, startIndex + textStr.length(),
                Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
        tv.setText(formatted);
     }

 

一个TextView使用不同的颜色

标签:

原文地址:http://www.cnblogs.com/qgli/p/4652016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!