android 如何编写edittext的onclick事件
我有一个包含文本的 editText 输入你的名字..所以我想当用户只需单击该 editText 时文本就会消失并且 editText 应该为空并且用户可以编写任何内容。那么我该怎么做呢。请给我答案
I have a editText contianing text Enter ur name.. so i want to when user just click on that editText then the text disappear and editText should be empty and user can write anything their. so how can i do like this. plz give me ans
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据您的要求,您不需要 onClick 事件侦听器。
尝试这个
或从java代码
For your requirement you don't need onClick event listener.
try this
or from java code
android:hint = "您希望用户在键入时得到帮助的文本"
用于此功能。这适用于 Android 和 monodroid 中的 EditText、
autocompleteText
视图。android:hint = "text that you want the user to be assisted with while typing"
is used for this feature.This works well with EditText,
autocompleteText
view as well both in android and monodroid.试试这个代码..
Try this code..