在 Android 编辑文本字段中显示一条消息

发布于 2024-09-11 11:00:46 字数 118 浏览 6 评论 0原文

海, 我有一个带有一个文本字段的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

儭儭莪哋寶赑 2024-09-18 11:00:46

只需在对象上使用或调用 setHint 即可。文本为空时显示的提示文本。

<EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18px"
        android:gravity="left"
        android:hint="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse egestas ullamcorper facilisis." />

Just use or call setHint on the object. Hint text to display when the text is empty.

<EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18px"
        android:gravity="left"
        android:hint="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse egestas ullamcorper facilisis." />
烟─花易冷 2024-09-18 11:00:46

您需要使用EditText的属性Hint

xml 中的 android:hint
setHint(int) 在运行时

这将执行您所需要的

You need to use the attribute Hint of the EditText.

android:hint in your xml
setHint(int) at runtime

This will execute just what you need

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文