Android 问题:Textview onchange 事件
我需要编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须为每个 EditView 设置 OnFocusChangeListener...
这样,当控件
hasFocus
时,它只会调用您在该 EditView 的 onFocusChange 方法中设置的功能。You have to set the OnFocusChangeListener for each EditView...
So that when the control
hasFocus
it will call only the functionality you set in the onFocusChange method for only that EditView.研究 TextWatcher 类并将其分配给您的文本视图
Look into TextWatcher class and assigning one to your textviews