TextField - 在用户开始输入文本之前显示提示
我正在开发一个黑莓应用程序。我想在用户开始输入之前在 TextField 中显示提示文本。当用户开始输入时,它应该消失,当 TextField 中有 0 个字符时,它应该显示。有人实现了这个吗?然后请分享。
I am developing an Blackberry application. I want to show a hint text in TextField before user starts typing.when user starts typing it should disappear and when there are 0 characters in TextField it should show up.Has anybody implemented this yet?then please share.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我的尝试 - 这是一个完整的代码,您可以在 JDE 6.x 中运行它。
当您输入内容时,灰色字符串“Search”将消失:
border.png:
src\mypackage\MyEdit.java:
Here is my try - it is a complete code, you can run it in JDE 6.x.
When you type something, the grey string "Search" will disappear:
The border.png:
The src\mypackage\MyEdit.java:
这是 Paint() 方法中的实现
,这是来源,感谢 peter_strange
http://supportforums.blackberry.com/t5/Java-Development/Prompt-hint-place-holder-text-on-a-Numeric-Password-edit-field/mp/990817#M151704< /a>
here is the implementation within paint() method
and here is the source thanks to peter_strange
http://supportforums.blackberry.com/t5/Java-Development/Prompt-hint-place-holder-text-on-a-Numeric-Password-edit-field/m-p/990817#M151704