Это может быть достигнуто с помощью Spannable String. Вам нужно будет импортировать следующее
import android.text.SpannableString;
import android.text.style.BackgroundColorSpan;
import android.text.style.StyleSpan;
И затем вы можете изменить фон текста, используя что-то вроде следующего:
TextView text = (TextView) findViewById(R.id.text_login);
text.setText("");
text.append("Add all your funky text in here");
Spannable sText = (Spannable) text.getText();
sText.setSpan(new BackgroundColorSpan(Color.RED), 1, 4, 0);
Где это выделит персонажей в поз. 1 - 4 красным цветом. Надеюсь, это поможет!