Когда фокус вернется из диалогового окна на основную сцену, текстовая область снова получит фокус, что вызовет повторное появление диалогового окна. Вы можете сфокусироваться на текстовой области, чтобы избежать этого:
address.focusedProperty().addListener(new ChangeListener<Boolean>() {
@Override
public void changed(ObservableValue<? extends Boolean> arg0, Boolean oldPropertyValue, Boolean newPropertyValue) {
if (newPropertyValue) {
System.out.println("Textfield on focus");
TextInputDialog dialog = new TextInputDialog("walter");
dialog.setTitle("Text Input Dialog");
dialog.setHeaderText("Look, a Text Input Dialog");
dialog.setContentText("Please enter your name:");
// Traditional way to get the response value.
Optional<String> result = dialog.showAndWait();
if (result.isPresent()) {
System.out.println("Your name: " + result.get());
}
// focus to different node on the scene
address.getParent().requestFocus();
// or mySubmitBtn.requestFocus();
} else {
System.out.println("Textfield out focus");
}
}
});
MCVE:
@Override
public void start( Stage stage )
{
TextArea address = new TextArea();
address.focusedProperty().addListener( new ChangeListener<Boolean>()
{
@Override
public void changed( ObservableValue<? extends Boolean> arg0, Boolean oldPropertyValue, Boolean newPropertyValue )
{
if ( newPropertyValue )
{
System.out.println( "Textfield on focus" );
TextInputDialog dialog = new TextInputDialog( "walter" );
dialog.setTitle( "Text Input Dialog" );
dialog.setHeaderText( "Look, a Text Input Dialog" );
dialog.setContentText( "Please enter your name:" );
// Traditional way to get the response value.
Optional<String> result = dialog.showAndWait();
if ( result.isPresent() )
{
System.out.println( "Your name: " + result.get() );
}
// focus to different node on the scene
address.getParent().requestFocus();
// or mySubmitBtn.requestFocus();
}
else
{
System.out.println( "Textfield out focus" );
}
}
} );
Scene scene = new Scene( new VBox( address ), 200, 200 );
stage.setScene( scene );
stage.show();
}