Android EditText 带有固定后缀
我需要一个带有固定后缀的 EditText。我正在使用 TextWatcher 来捕获 onTextChanged 事件,但如果我通过添加后缀再次更改文本,则会导致无限递归引起的 stackoverflow 异常。
msgtextview.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
//Doing some other stuff
msgtextview.setText("Changed Text") //This cause infinite recursion
}
}
这是代码。
I need an EditText with a fixed Suffix. I'm using a TextWatcher to catch the onTextChanged Event, but if I change the Text again by adding my suffix it causes a stackoverflow exception caused by an infinite recursion.
msgtextview.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
//Doing some other stuff
msgtextview.setText("Changed Text") //This cause infinite recursion
}
}
Here's the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您遇到了堆栈溢出,因为当您以编程方式添加后缀时,它会触发 onTextChanged 事件。
您是否考虑过在以编程方式设置标志之前设置一个标志,以便下次调用它时您可以知道不要添加后缀?
另一种方法是仅在用户提交表单后添加后缀。
I assume you're having a stack overflow because when you programmatically add the suffix, it triggers an onTextChanged event.
Have you thought about setting a flag right before you set it programmatically so the next time it's called you can know not to add the suffix?
The alternative is to only add the suffix after the user submits your form.