我想用一些不区分大小写的颜色突出显示某些文本背景。我尝试了下面的代码,但它不起作用。它仅在关键字为小写时突出显示。
private static CharSequence highlightText(String search, String originalText) {
if (search != null && !search.equalsIgnoreCase("")) {
String normalizedText = Normalizer.normalize(originalText, Normalizer.Form.NFD).replaceAll("\\p{InCombiningDiacriticalMarks}+", "").toLowerCase().;
int start = normalizedText.indexOf(search);
if (start < 0) {
return originalText;
} else {
Spannable highlighted = new SpannableString(originalText);
while (start >= 0) {
int spanStart = Math.min(start, originalText.length());
int spanEnd = Math.min(start + search.length(), originalText.length());
highlighted.setSpan(new BackgroundColorSpan(Color.YELLOW), spanStart, spanEnd, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
start = normalizedText.indexOf(search, spanEnd);
}
return highlighted;
}
}
return originalText;
}
例如,我有一个原始文本=“我喜欢Stackoverflow”,关键字是“我爱”。如何突出“我爱”的文字背景而不将其改为小写并保持案例。
谢谢。
我从这里得到了答案:Android: Coloring part of a string using TextView.setText()?
String notes = "aaa AAA xAaax abc aaA xxx";
SpannableStringBuilder sb = new SpannableStringBuilder(notes);
Pattern p = Pattern.compile("aaa", Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(notes);
while (m.find()){
//String word = m.group();
//String word1 = notes.substring(m.start(), m.end());
sb.setSpan(new BackgroundColorSpan(Color.YELLOW), m.start(), m.end(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
}
editText.setText(sb);
作为更新Mei Yi's answer:
如果在TextView
上设置了一个layout属性,例如android:textAllCaps="true"
,它可能会覆盖用于设置高亮显示的Spannable字符串,看起来它不起作用。这很容易解决;只需以编程方式设置布局属性。
防爆。 textView.setText(text.toUpperCase())
而不是android:textAllCaps="true"