Android EditText背景文本
有没有办法设置 EditText 的背景文本?例如,我有一个带有 2 个 EditText 视图的登录屏幕,一个用于用户名,一个用于密码。我希望将文本“用户名”和“密码”写入 EditText 内,一旦用户触摸这些文本,文本就会消失,但一旦用户删除了自己的条目,文本就会重新出现。
是否有一个属性可以实现这一点,或者我应该通过事件和其他东西自己实现它?
Is there a way to set the background text of an EditText? for instance, I have a login screen with 2 EditText views, one for username and one for password. I want the text "Username" and "Password" be written inside the EditText, and once the user touches those the text disappears but once user deleted his own entry, text re-appears.
Is there a property for that or should I implement this on my own with events and stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
hint
属性将为您处理这个问题。The
hint
property will take care of that for you.使用 hint 属性,或 setHint 方法。
Use hint property, or setHint method.