2017-02-25 1 views

Répondre

0

Il y a plusieurs façons, si j'aime ce l'un des meilleurs -

TextView TV = (TextView)findViewById(R.id.mytextview01); 
Spannable word = new SpannableString("Your message");   

word.setSpan(new ForegroundColorSpan(Color.BLUE), 0, word.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 

TV.setText(word); 
Spannable wordTwo = new SpannableString("Your new message");   

wordTwo.setSpan(new ForegroundColorSpan(Color.RED), 0, wordTwo.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
TV.append(wordTwo); 

Source