【发布时间】:2013-06-20 01:44:17
【问题描述】:
有没有办法将图像作为舞台背景而不是先添加到 ImageView 中?
ImageView splash = new ImageView(getClass().getResource("/splash.png").toExternalForm());
VBox splashLayout = new VBox();
splashLayout.getChildren().addAll(splash, progressText, loadProgress);
Scene splashScene = new Scene(splashLayout);
initStage.setScene(splashScene);
【问题讨论】: