如何在JavaFX的Textfield中添加提示文本

use*_*079 6 text javafx hint textfield

我想在文本字段中添加一些提示文本,例如"name"或"surname".我创建这样的文本域TextField userTextField = new TextField();,但我找不到如何做到这一点.在这里,我只是在用户开始输入时才在JavaFX TextField中找到这个Clear提示文本,但我无法相信这是唯一的方法.或者我错了?

Ema*_*raf 5

我是这样做的:

userTextField.setPromptText("name"); //to set the hint text
userTextField.getParent().requestFocus(); //to not setting the focus on that node so that the hint will display immediately
Run Code Online (Sandbox Code Playgroud)