在 Android 编辑文本字段中显示一条消息
海, 我有一个带有一个文本字段的 Android 程序。 当它加载到模拟器上时,我需要在该文本字段内显示一条消息。 当用户在该文本框中单击时,该消息应该消失。 例如:请输入姓名 任何人都可以在这里发布一些示例代码吗...
Hai,
I have an Android Program with one text field.
I need to display a message inside that textfield when it loads on an emulator.
When the user clicks inside that textbox that message should dispappear.
For Ex: Please enter name
Can any one post some sample code over here...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在对象上使用或调用
setHint
即可。文本为空时显示的提示文本。Just use or call
setHint
on the object. Hint text to display when the text is empty.您需要使用EditText的属性
Hint
。xml 中的
android:hint
setHint(int)
在运行时这将执行您所需要的
You need to use the attribute
Hint
of the EditText.android:hint
in your xmlsetHint(int)
at runtimeThis will execute just what you need