What I mean is, is it possible to change the text \"This text is blue\" to the color blue in a single string? There must be a way...
I am use for a change star if service "Onward"
String c = "*" + getResources().getString(R.string.rupee) + str_pay_at_store;
SpannableString spannable2 = new SpannableString(c);
spannable2.setSpan(new ForegroundColorSpan(Color.RED), 0, 1,
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
tv_payatstore.setText(spannable2);
You can see like this