Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. String texto="Rojo"+arrayList.get(i);
  2.  
  3. String texto="33[31m Rojo"+arrayList.get(i);
  4.  
  5. String texto="Rojo"+arrayList.get(i);
  6.  
  7. String texto="<font color="#ff0000">Rojo</font>"+"<font color="#000000">"+ arrayList.get(i) + "</font>";
  8.  
  9. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  10. textView.setText(Html.fromHtml(texto, Html.FROM_HTML_MODE_LEGACY));
  11. } else {
  12. textView.setText(Html.fromHtml(texto));
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement