ANDROID EditText onclicklistener?
我这里有两个 EditTexts'(用户名和密码),我希望它在应用程序启动时看起来像这样:
但在用户单击 EditTexts 后,我希望它自动删除“用户名”(和“密码”),如下所示:
我该怎么做这个技巧?有人可以帮我吗? :)
I have here two EditTexts' (username and password) and I want it to look like this on the start of the application:
But after the user should click the EditTexts' i want it to automatically delete the "username"(and "password"), like this:
how should i do that trick? can anyone help me, please? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用属性
android:hint
Use the property
android:hint
有更简单的方法:使用 hint-property,它完全符合您的要求。
仅当 EditText 为空时才会显示。
There is something easier: use the hint-property, it does exactly what you want.
It's only shown when the EditText ist empty.
在 xml 中使用 android:hint 标签,
例如,
Use the android:hint tag in the xml
E.g.,
使用 xml 文件中的
android:hint="UserName"
。并在密码中使用
android:password="true"
EditText
Use the
android:hint="UserName"
in the xml file.and also use
android:password="true"
in the passwordEditText