【发布时间】:2016-12-01 16:22:28
【问题描述】:
这是我的活动:
et.addTextChangedListener(mTextEditorWatcher);
private final TextWatcher mTextEditorWatcher = new TextWatcher() {
public void beforeTextChanged(CharSequence s, int start, int count, int after)
{
}
public void onTextChanged(CharSequence s, int start, int before, int count)
{
String name =et.getText().toString();
String a ="a";
String b ="b";
String c ="c";
String d ="d";
String e ="e";
String f ="f";
String g ="g";
String h ="h";
String a1 ="\u24B6";
String b1 ="\u24B7";
String c1 ="\u24B7";
String d1 ="\u24B9";
String e1 ="\u24BB";
String f1 ="\u24BB";
String g1 ="\u24BD";
String h1 ="\u24BD";
name =name.replaceAll(a,a1);
name =name.replaceAll(b,b1);
name =name.replaceAll(c,c1);
name =name.replaceAll(d,d1);
name =name.replaceAll(e,e1);
name =name.replaceAll(f,f1);
name =name.replaceAll(g,g1);
name =name.replaceAll(h,h1);
tv.setText(name);
}
public void afterTextChanged(Editable s)
{
et.removeTextChangedListener(this);
et.addTextChangedListener(this);
}
};
当在edittext 中写入 a 或 b 或 c 时,textview 中显示空间是什么解决方案
显示 unicode?
请帮忙
【问题讨论】:
-
请编辑您的问题,使代码干净无误,如
}而不是{,并确保正确缩进,以便向读者呈现“代码”。
标签: java android unicode textview