Android 在 onTextChanged 中调用 setText
为了防止无限循环,我做了一些像这样丑陋的事情...
@Override
protected void onTextChanged(CharSequence text, int start,
int lengthBefore, int lengthAfter) {
String t = text.toString();
String tt = t.toUpperCase();
if (!t.equals(tt)) {
setText(tt);
}
super.onTextChanged(text, start, lengthBefore, lengthAfter);
}
是否有其他方法可以防止在更改 onTextChanged
中的文本时调用 onTextChanged
?
To prevent the infinite loop I did something as ugly as this...
@Override
protected void onTextChanged(CharSequence text, int start,
int lengthBefore, int lengthAfter) {
String t = text.toString();
String tt = t.toUpperCase();
if (!t.equals(tt)) {
setText(tt);
}
super.onTextChanged(text, start, lengthBefore, lengthAfter);
}
Is there any other way to prevent the onTextChanged
from being called when changing the text within onTextChanged
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用标志来指定文本是否已更改一次。如果已经更改过一次,则不要再更改,否则更改。
You could use flags that specify if the text has been changed once or not. If it has been changed once, then do not change again, else change it.