Is it possible to set colours of strings used in a text view programmatically? I tried using this but it doesn't work.
TextView txt = (TextView)v.findViewById(R.id.textView1);
txt.setText(Html.fromHtml("<font color='#0099CC'>@string/app_name</font>" +
"<font color='#995676'> @string/app_description</font>" +
"<font color='#55GGFES'> @string/app_version</font>"
));