insert HTML code for color around word and set it to your textView .
like
String newString = oldString.replaceAll(textToHighlight, "<font color="red">"+textToHighlight+"</font>");
textView.setText(Html.fromHtml(newString));
insert HTML code for color around word and set it to your textView .
like
String newString = oldString.replaceAll(textToHighlight, "<font color="red">"+textToHighlight+"</font>");
textView.setText(Html.fromHtml(newString));