List of utility methods to do TextView Highlight
void | highlight(int start, int end, TextView text) hightlight text SpannableStringBuilder spannable = new SpannableStringBuilder(text .getText().toString()); ForegroundColorSpan span = new ForegroundColorSpan(Color.RED); spannable.setSpan(span, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); text.setText(spannable); |