Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. TextView TV = (TextView)findViewById(R.id.mytextview01);
  2. Spannable word = new SpannableString("Your message");
  3.  
  4. word.setSpan(new ForegroundColorSpan(Color.BLUE), 0, word.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  5.  
  6. TV.setText(word);
  7. Spannable wordTwo = new SpannableString("Your new message");
  8.  
  9. wordTwo.setSpan(new ForegroundColorSpan(Color.RED), 0, wordTwo.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  10. TV.append(wordTwo);
  11.  
  12. <string name="signal_msg3">
  13. <![CDATA[
  14. Добавьте номера Ваших близких в <font color='#cc0000'>Экстренные контакты</font>
  15. ]]>
  16. </string>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement