如果用户键入一个字符串并且它包含 @ 我想将文本的颜色更改为红色。我曾尝试使用 textwatcher,但出现堆栈溢出错误。我只想在 @ 开头时更改颜色。代码如下
topic.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before,
int count) {
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
public void afterTextChanged(Editable s) {
if (s.toString().matches("(@\\w+)")) {
topic.setText(Html.fromHtml(s.toString().replaceAll(
"(@\\w+)", "<font color='#ffff0000'>$1</font>")));
}
}
});