Change color font only in part of textview

1k Views Asked by At

i want to change only a part of textview color.. I've tried in this way but nothing change

TextView textView = (TextView)findViewById(R.id.Temperature);
textView.setText("Temperature: "+ "<small> <font color='#59c3fa'>" + temperature + "°C</font></small>");

So the first part "Temperature: " has to have the textview color (Black in this case), and the rest of part with this #59c3fa. How is wrong?

3

There are 3 best solutions below

1
On

Please use Html class for this.

textView.setText(Html.fromHtml("Temperature: "+ "<small> <font color='#59c3fa'>" + temperature + "°C</font></small>"));
0
On

Try to do something like this:

String text = "Temperature: "+ "<small> <font color='#59c3fa'>" + temperature + "°C</font></small>";
textView.setText(Html.fromHtml(text);
0
On

try to use

TextView textView = (TextView)findViewById(R.id.Temperature);
textView.setText(Html.fromHtml("Temperature: "+ "<small> <font color='#59c3fa'>" + temperature + "°C</font></small>"));