更新 edittext 时会发生什么事件?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您必须将
addTextChangedListener()
设置为editText
。如下所示:然后您必须重写此方法:
您可以根据需要使用此方法中的任何一个并更改相关视图文本。
For this you have to set
addTextChangedListener()
toeditText
. Just as below:Then you have to override this method:
You can use any of this method as you need and change your relevant views text.