Android 问题:Textview onchange 事件

发布于 2024-12-03 16:38:44 字数 175 浏览 1 评论 0原文

我需要编写一个 Android 应用程序,它有 4 个文本框。 如果我在其中一个框中写入字符或数字,则所有其他框都需要刷新。 现在是重点。我正在使用 onchange 事件,但是有一个递归,并且其他框的每个 onchange 都会被执行。有没有一种简单的方法,无需时间或其他方法来中止其他 onchange 事件?

干杯

i need to programm an android app, which has 4 textboxes.
If i write a char or number in 1 of this boxes all other boxes needs to be refreshed.
Now the point. I am using the onchange event, but there is a recursion and every onchange of the other boxes are executed. Is there a simple way without time or something to abort the other onchange events?

Cheers

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

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

发布评论

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

评论(2

私野 2024-12-10 16:38:44

您必须为每个 EditView 设置 OnFocusChangeListener...

editview.setOnFocusChangeListener(new OnFocusChangeListener() {

        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            // TODO Auto-generated method stub

        }
    });

这样,当控件 hasFocus 时,它只会调用您在该 EditView 的 onFocusChange 方法中设置的功能。

You have to set the OnFocusChangeListener for each EditView...

editview.setOnFocusChangeListener(new OnFocusChangeListener() {

        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            // TODO Auto-generated method stub

        }
    });

So that when the control hasFocus it will call only the functionality you set in the onFocusChange method for only that EditView.

安人多梦 2024-12-10 16:38:44

研究 TextWatcher 类并将其分配给您的文本视图

Look into TextWatcher class and assigning one to your textviews

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