android笔记 中TextView修改部分字体颜色或样式


1、SpannableString方式

 SpannableString spannable = new SpannableString("第一种样式第二种样式");
 spannable.setSpan(new ForegroundColorSpan(Color.parseColor("#e5cfa1")), 5, spannable.length()), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); 

 tv.setText(spannable);

2、html代码注释方式

String str="第一种样式第二种样式";

tv.setText(Html.fromHtml(str));

你可能感兴趣的:(android笔记 中TextView修改部分字体颜色或样式)