Its possible try this..
string.xml
Red color text.]]>
ExampleClass.java
TextView colorTextView = (TextView)findViewById(R.id.colorText);
String customColorText = getResources().getString(R.string.colorText)
colorTextView.setText(Html.fromHtml(customColorText));
Happy coding....