String str = "글자를 바꿔주세요";
SpannableStringBuilder ssb = new SpannableStringBuilder(str);
ssb.setSpan(new ForegroundColorSpan(Color.parseColor("#011FF6")), 0, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(ssb);
<resources>
<string name="app_name">TextViewDifferenceColor</string>
<string name="text_message">
<![CDATA[<font color="red">Hi</font>,
<h1>Android</h1>]]>
</string>
</resources>
string.xml
String text = getResources().getString(R.string.text_message);
textView.setText(Html.fromHtml(text));