android text highlighting, not case sensitive

String titlebig=data.getNickname().toUpperCase();
String keywordbig=keywords.toUpperCase();
int indexOf = titlebig.indexOf(keywordbig);
builder.setSpan(new ForegroundColorSpan(Color.parseColor("#E10000")), indexOf, indexOf + keywords.length(), SPAN_EXCLUSIVE_EXCLUSIVE);
txt .setText(builder);

Guess you like

Origin blog.csdn.net/cao2884388/article/details/113245758