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