Je cherche un moyen de changer la couleur d'un texte d'un seul mot dans un à TextView
partir d'un Activity
.
Par exemple, avec ceci:
String first = "This word is ";
String next = "red"
TextView t = (TextView) findViewById(R.id.textbox);
t.setText(first + next);
Comment changer la couleur du next
texte en rouge?