更新 edittext 时会发生什么事件?

发布于 2024-10-16 05:08:09 字数 152 浏览 1 评论 0原文

我有一个 android 布局,其中有两个编辑文本,一个用于数量,一个用于费率,一个文本视图用于总量。现在我想做的是每当用户更改费率或数量字段时更改/更新总金额。

我正在寻找的 edittext 事件是什么?我可以像设置 OnClick 一样从布局 xml 属性中设置它吗?

I have and android layout with two edittexts one for Qty and one for rate and a textview for total amount. Now what I want to do is change/update the total amount whenever the user changes the rate or quantity fields.

What is the edittext event I am looking for and can I set it from the layout xml properties like I can set OnClick?

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

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

发布评论

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

评论(1

为此,您必须将 addTextChangedListener() 设置为 editText。如下所示:

editText.addTextChangedListener(this);// your activity has to implement TextWatcher interface

然后您必须重写此方法:

@Override
    public void afterTextChanged(Editable s) {
        // TODO Auto-generated method stub

    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
            int after) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        // TODO Auto-generated method stub

    }

您可以根据需要使用此方法中的任何一个并更改相关视图文本。

For this you have to set addTextChangedListener() to editText. Just as below:

editText.addTextChangedListener(this);// your activity has to implement TextWatcher interface

Then you have to override this method:

@Override
    public void afterTextChanged(Editable s) {
        // TODO Auto-generated method stub

    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
            int after) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        // TODO Auto-generated method stub

    }

You can use any of this method as you need and change your relevant views text.

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