Android EditText 带有固定后缀

发布于 2024-09-30 04:09:25 字数 432 浏览 0 评论 0原文

我需要一个带有固定后缀的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無心 2024-10-07 04:09:26

我假设您遇到了堆栈溢出,因为当您以编程方式添加后缀时,它会触发 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文