android textview部分字体变颜色

String str ="你给我听好";
SpannableStringBuilder style=new SpannableStringBuilder(str);  

style.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.orange)),3,str.length(),Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

textview.setText(style);

你可能感兴趣的:(android,android)