有以下代码:
String s = message + "\n" + date;
Spannable f = Spannable.Factory.getInstance().newSpannable(s);
f.setSpan(new ForegroundColorSpan(Color.BLUE), 0, message.length(), 0);
f.setSpan(new ForegroundColorSpan(Color.RED), message.length() + 1, s.length(), 0);
textView.setText(f);
此代码适用于为 textView 设置不同的颜色。但我需要另一个功能 - 我希望“日期”的字体和斜体字号更小。我怎样才能做到这一点?