我有2个fxml布局,其中一个包含另一个。我尝试从父母的控制器更新内部元素的内容,i。即当按下父控制器上的按钮时,在imageview处更改图像。
我使用方法,提议here。问题是当我调用假设在imageView(questionController.setPdfPageImage(++currentPage);
)内部更改图像的方法时,没有任何反应。我尝试了一些调试,我相信这是因为有两个完全不同的控制器实例:一个是从运行时调用的,另一个是默认情况下从fxml调用的。请指出正确的解决方案。
main.fxml的一部分
<BorderPane
fx:id="mainContainer"
xmlns="http://javafx.com/javafx/8"
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.package.name.MainController">
<center>
<Pane fx:id="center">
<fx:include source="question.fxml"/>
</Pane>
</center>
<bottom>
<VBox fx:id="bottom"
BorderPane.alignment="CENTER">
<children>
<Button fx:id="next" text="Next"/>
</children>
</VBox>
</bottom>
</BorderPane>
问题的一部分.fxml
<SplitPane fx:id="content"
dividerPositions="0.5"
xmlns="http://javafx.com/javafx/8"
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.package.name.QuestionController">
<items>
<AnchorPane fx:id="questionContainer">
<children>
<ImageView fx:id="questionView" pickOnBounds="true" preserveRatio="true"/>
</children>
</AnchorPane>
</items>
</SplitPane>
QuestionController.java的一部分
public void setPdfPageImage(int pageNum) {
// InputStream is = QuestionController.class.getResourceAsStream(currentPdf);
InputStream is = this.getClass().getResourceAsStream(currentPdf);
Image convertedImage;
try {
PDDocument document = PDDocument.load(is);
List<PDPage> list = document.getDocumentCatalog().getAllPages();
PDPage page = list.get(pageNum);
BufferedImage image = page.convertToImage(BufferedImage.TYPE_INT_RGB, 128);
convertedImage = SwingFXUtils.toFXImage(image, null);
document.close();
questionView.setImage(convertedImage);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
MainController.java的一部分
public class MainController implements Initializable {
QuestionController questionController;
@FXML // fx:id="next"
private Button next; // Value injected by FXMLLoader
@Override
public void initialize(URL location, ResourceBundle resources) {
FXMLLoader loader = new FXMLLoader(getClass().getResource("/question.fxml"));
try {
loader.load();
} catch (IOException e1) {
e1.printStackTrace();
}
questionController = (QuestionController) loader.getController();
next.setOnAction(event -> {
//TODO remove hardcoded value 49
if (currentPage < 49)
questionController.setPdfPageImage(++currentPage);
else {
Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setTitle("Quiz finished");
alert.setHeaderText(null);
alert.setContentText("This was the last question. Thank you!");
alert.showAndWait();
}
});
}
}
答案 0 :(得分:2)
要注入包含的fxml的控制器,请将fx:id
属性添加到fx:include
标记:
<fx:include fx:id="question" source="question.fxml"/>
这会将控制器注入名称为<fx:id>Controller
的字段,在这种情况下为questionController
(如果加载项可以看到这样的字段)。
(同样从initialize
方法中删除加载程序部分。)