在代码中更改TextView中字体的颜色

第一种方法 :


String num="您好!您在2014年04月23日15:20发布的座驾"+""+"您带来的不便,请您给予理解,官方消息,无需回复谢谢"+""+"buzhidao sjhemajsadja";


tv3.setText(Html.fromHtml(num));


第二种方法“

SpannableStringBuilder style=new SpannableStringBuilder(text);   


          style.setSpan(new ForegroundColorSpan(Color.RED),index[0],index[0]+1,Spannable.SPAN_EXCLUSIVE_INCLUSIVE);    


          style.setSpan(new ForegroundColorSpan(Color.RED),index[1],index[1]+2,Spannable.SPAN_EXCLUSIVE_INCLUSIVE);    


          style.setSpan(new BackgroundColorSpan(Color.RED),index[2],index[2]+3,Spannable.SPAN_EXCLUSIVE_INCLUSIVE);    


          tv3.setText(style);


TextView tv = (TextView) findViewById(R.id.textView2);
tv.setOnClickListener(new OnClickListener() {


@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, "变色了", 1).show();



}
});
}
}

你可能感兴趣的:(在代码中更改TextView中字体的颜色)