我有一个带有主视图 (FXML) 及其控制器的 Java FX 应用程序。我正在尝试使用自己的控制器模拟像子视图(FXML)这样的选项卡。到目前为止一切顺利,我可以使用以下代码在子视图之间切换:
//page type para is the path of FXML file
private void changePage(String pageType) throws IOException
{
childScene.getChildren().clear();
FXMLLoader loader = new FXMLLoader(getClass().getResource(pageType));
loader.setControllerFactory((Class<?> controllerClass) ->
{
//trying to load a single instance controller of the child
if (controllerClass == EngTaiController.class)
{
eng2TaiController.setData(words, selectedFont);
return eng2TaiController;
}
try
{
return controllerClass.newInstance();
}catch (Exception ex)
{
throw new RuntimeException(ex);
}
});
Parent page = loader.load();
VBox.setVgrow(page, Priority.ALWAYS);
//childScene is the container for childviews
childScene.getChildren().add(page);
}
问题是它不会保留任何用户状态、文本框中的文本、列表视图中的选择、从一个视图切换到另一个视图时在子视图中加载的自定义控件。