Android设置TextView字体呈现多种颜色的方法

第一种:直接设置

 text.setBackgroundColor(Color.RED);

第二种:

text.setBackgroundColor(Color.parseColor(#87CEFA)) ;

第三种:

 tText.setTextColor(0xffff00ff);

注意:这种方式0x是代表颜色整数的标记,ff是表示透明度,ff00ff表示颜色,注意:这里ffff00ff必须是8个的颜色表示,不接受ff00ff这种6个的颜色表示。
第四种:

text.setBackgroundColor(getResources().getColor(R.color.red));
第五种:
当需要给控件设置多种颜色的字体时:如  我是彩色的:  有两种方式
textView=(TextView)findViewById(R.id.text_show); 
SpannableStringBuilder style = new SpannableStringBuilder("备注:签收人(张三)"); 
style.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
style.setSpan(new ForegroundColorSpan(Color.RED), 7, 9, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
textView.setText(style);

 
  
或者,当不知道具体长度时,使用下面的方法比较方便:
tv.setText(Html.fromHtml("我就是个例子:"+"我是彩色的!");



 
  
 
  
 
 

你可能感兴趣的:(常用的工具类)