android 编辑文本监听器
editText.setKeyListener(this) 和 editText.setOnKeyListener(this) 之间的主要区别是什么?
what are the main differences between editText.setKeyListener(this) and editText.setOnKeyListener(this)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于一般用途,您可能应该坚持 addTextChangedListener聆听文本变化。如果使用不当,更改关键侦听器将影响
EditView
的工作方式。For general use you should probably stick to addTextChangedListener for listening to text changes. Altering the key listeners will affect the way the
EditView
works if not used properly.差异(或缺乏)可以在文档中找到。
void setOnKeyListener(View.OnKeyListener)
是 View 上的一个方法。来自 文档:
void setKeyListener(KeyListener)
是 TextView 上的一个方法。来自 文档:
The difference (or lack thereof) can be found in the documentation.
void setOnKeyListener(View.OnKeyListener)
is a method on View.From the documentation:
void setKeyListener(KeyListener)
is a method on the TextView.From the documentation: