Нужно сделать первые буквы красными, можно через ресурсы, можно в коде! Как это сделать?
Ответ
С помощью span
TextView textView = (TextView)findViewById(R.id.textView);
final SpannableStringBuilder text = new SpannableStringBuilder("Text");
final ForegroundColorSpan style = new ForegroundColorSpan(Color.rgb(255, 0, 0));
text.setSpan(style, 0, 1, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
textView.setText(text);
Комментариев нет:
Отправить комментарий