如何让 EditText 在每次单击按钮时擦除
好的,我有一个接受用户输入的编辑文本框。每次用户单击按钮时,我希望用户输入的文本消失。截至目前,每次单击按钮时,文本都会保留在编辑文本中。我希望默认情况下删除文本,而不必每次都创建 EditText 实例
谢谢大家,如果您能提供帮助!
Okay i have a edit text box that takes user input. Every time the user clicks the button i would like for the text that the user typed to be gone. As of now everytime the button is clicked the text remains in the edittext. I would like the text to be erased by default without having to create a instance of EditText everytime
Thanks guys if you can help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用setText():
Use
setText()
:在 setContentView 之后:
这样,每次用户单击时,所有内容都会被清除。
after your setContentView:
With this, every time the user clicks all content is cleaned.