我怎样才能改变EditText?

发布于 2024-10-05 12:35:02 字数 63 浏览 2 评论 0原文

我有一个 EditText,我想在每次文本更改时通知(输入每个字符)。我应该使用什么实现以及我应该重写什么函数?

I have a EditText and I want to inform each time text changes (with entering each character). What implementation should I use and what function should I override?

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

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

发布评论

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

评论(2

单身情人 2024-10-12 12:35:02

在 EditText 上使用 addTextChangedListener 方法,并让您的类实现或定义一个实现 TextWatcher 类的内部类:

https://developer.android.com/reference/android/widget/TextView.html#addTextChangedListener(android .text.TextWatcher)

Use the addTextChangedListener method on your EditText and make your class implement or define an inner class implementing the TextWatcher class:

https://developer.android.com/reference/android/widget/TextView.html#addTextChangedListener(android.text.TextWatcher)

怪我闹别瞎闹 2024-10-12 12:35:02

您可以将布尔变量声明为 false,并且每次 et.edited 都将其设为 true

You can declare a boolean variable as false and at each time et.edited make it true

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