如何在android中删除EditText的焦点文本?
我有一个场景,例如,活动中的 EditText,而不是使用 Textview 作为它的标签,我想将文本“UserName”放入 EditText 中,并且如果用户单击它。 它应该消失,并且 EditText 应该变空以在其中输入数据。
我怎样才能实现这个目标?
I have a scenario, for example, a EditText in acitivity instead of using Textview as a label of it i want to put text "UserName" inside EditText and if user clicks on it.
it should disappear and EditText should get empty to enter data in it.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
android:hint="username"
将此属性放入 EditText
即可。
android:hint="username"
put this attribute in EditText
thats it.
onclickListener 不适用于 EditText 项目,您必须使用 OnFocusListener。
onclickListener does not work with EditText items, you'll have to use an OnFocusListener.
使用 setOnClickListener() 注册一个监听器,然后检查 EditText 是否只包含“UserName”,如果是则将其清除。
Use
setOnClickListener()
to register a listener that then checks if the EditText just contains "UserName", and clears it out if that is true.