I am looking to add formatted text to a ListView
(I would like the text to be the color #33B5E5). This is what I tried so far:
ArrayList myarraylist;
String mystring = "Value I want to add"
myarraylist.add(mystring);
//other functions to set the arraylist
My question is, how would I change the color of mystring
? Is it possible to set the text color of a string?