Я хотел бы отображать файл svg в фоновом режиме:
public void start(Stage primaryStage) throws Exception{
this.primaryStage = primaryStage;
Group root = new Group();
primaryStage.setTitle("Test");
primaryStage.setScene(new Scene(root,1920, 1080));
primaryStage.setMaximized(true);
FileInputStream input_background_template = new
FileInputStream("ressources/background/template_home.svg");
ImageView img_background_template = new ImageView(new Image(input_background_template));
root.getChildren().addAll(img_background_template)
primaryStage.show();
}
Но у меня все еще ничего нет в фоновом режиме?