设计中TextView里面的字体有时候需要设置不同的颜色,来达到提示的目的,总结有以下几种方法:
方法一:
使用SpannableStringBuilder
TextView textView=(TextView)findViewById(R.id.text_show);
SpannableStringBuilder style = new SpannableStringBuilder("延迟(必须设置)");
style.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
style.setSpan(new ForegroundColorSpan(Color.RED), 3, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);