一个TextView中的Android多色

时间:2012-04-13 12:32:35

标签: android textview styling

  

可能重复:
  Is it possible to have multiple styles inside a TextView?

我希望我的TextView以红色显示其部分文本,而其他部分显示为黑色。它的内容(文本)是动态创建的,我不知道有多少单词是红色的。

有没有办法像在html-css中那样做?

3 个答案:

答案 0 :(得分:89)

您可以使用Spannable来实现您想要的效果。

String text = "This is <font color='red'>red</font>. This is <font color='blue'>blue</font>.";

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
   textView.setText(Html.fromHtml(text,  Html.FROM_HTML_MODE_LEGACY), TextView.BufferType.SPANNABLE);
} else {
   textView.setText(Html.fromHtml(text), TextView.BufferType.SPANNABLE);
}

答案 1 :(得分:77)

试试这种方式

    TextView tv = (TextView)findViewById(R.id.tv);

    Spannable wordtoSpan = new SpannableString("I know just how to whisper, And I know just how to cry,I know just where to find the answers");        
    wordtoSpan.setSpan(new ForegroundColorSpan(Color.BLUE), 15, 30, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    wordtoSpan.setSpan(new ForegroundColorSpan(Color.RED), 5, 10, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    tv.setText(wordtoSpan);

答案 2 :(得分:6)

你基本上想要的是SpannableString

有关完整示例,请参阅this