关于android中autocompletetextview的问题
我写了一个逻辑,默认情况下,如果有人想清除 autocompletetextview(AV) 的内容,那么它就会成为一个。但我希望当我把焦点放在 AV 中时,它应该是清晰的。
I have written a logic where by default if anyone wants to clear the conents of autocompletetextview(AV) then it will become one. But I want when I bring focus inside AV then it should be clear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
onFocusChanged
来检测焦点的变化,如果只是失去焦点,请检查内容。否则清除数据。
Use
onFocusChanged
to detect a change in the focus, and if it just lost focus, check the content. otherwise clear the data.