添加 setText() 时强制关闭

发布于 2024-12-05 02:18:43 字数 484 浏览 0 评论 0原文

以下是我的代码:

name = (EditText)findViewById(R.id.editText1);
        name.addTextChangedListener(new TextWatcher(){
         public void afterTextChanged(Editable s) {


             name.setText(s.toString()+"-");
                }
 public void beforeTextChanged(CharSequence s, int start, int count, int after){ }
 public void onTextChanged(CharSequence s, int start, int before, int count){ }
            });

但是我让应用程序强制关闭,当删除 setText() 时应用程序工作正常

the following is my code :

name = (EditText)findViewById(R.id.editText1);
        name.addTextChangedListener(new TextWatcher(){
         public void afterTextChanged(Editable s) {


             name.setText(s.toString()+"-");
                }
 public void beforeTextChanged(CharSequence s, int start, int count, int after){ }
 public void onTextChanged(CharSequence s, int start, int before, int count){ }
            });

But I get the app to force close , when remove setText() the app works fine

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

樱&纷飞 2024-12-12 02:18:43

您陷入了 afterTextChanged 方法中,因为在您 setText 之后,它被再次调用,一次又一次......您必须找到另一种方法,如何/何时附加“-”字符。

You are getting stuck in your afterTextChanged method, because right after you setText, it is called again, and again, and again... You have to find another way, how/when to append the "-" character.

夜未央樱花落 2024-12-12 02:18:43

请检查我不久前问过的这个问题。这很像你的问题:

Changing text in Android on文本更改导致溢出错误

Please check this question I asked some time ago. It's a lot like your question:

Changing text in Android on text change causes overflow error

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