使用 TextWatcher 在 EditText 上添加取消按钮/图标
我有一个带有 TextWatcher 的 EditText,并且 onChangeText 方法工作完美。
我想在 EditText 的最右端添加一个迷你图标/按钮,它会清除文本然后消失。
我可以对如何实施这个有一些指导吗?我不需要源代码,而是想要使用什么机制的想法。先感谢您。
I have an EditText with a TextWatcher attached to it and the onChangeText method works flawlessly.
I'd like to add a mini icon/button at the very right end of the EditText, which clears the text and then disappears.
May I have some direction on how to implement this? I don't want source code, but an idea on what mechanism to use. Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说的是,您将它永久地保留在您的布局中,因为您希望它看起来像这样,但您通常将“可见性”设置为“消失”,然后在您希望显示它时将其设置为“可见”。
I would say you have it in your Layout permanently as you want it to look but you normally have the Visibility set to GONE then just set it to VISIBLE when you want it shown.