我有一个调用超级构造函数的类。超类加载一个FXML包装器布局,然后另一个FXML布局作为包装器中元素的子元素,如下所示:
// Reference 'outer' FXML
URL outer_url = getClass().getResource("/main/resources/fxml/RootNode.fxml");
FXMLLoader outer_loader = new FXMLLoader(outer_url);
outer_loader.setRoot(this);
outer_loader.setController(this);
// Reference 'inner' FXML
URL inner_url = getClass().getResource(fxml_path);
FXMLLoader inner_loader = new FXMLLoader(inner_url);
try {
outer_loader.load();
/* The root of inner_loader is a component of outer_loader FXML,
* thus outer_loader.load() must be called first. */
inner_loader.setRoot(outer_loader.getNamespace().get("vbox_center"));
inner_loader.setController(controller);
inner_loader.load();
} catch (IOException e) {
e.printStackTrace();
}
我需要将类作为inner_loader的控制器。这可能吗?我尝试通过超级构造函数传递对类的引用,但是我不能引用这个'这个'在调用超级构造函数之前。
有什么想法吗?提前谢谢。
编辑:我也尝试直接通过内部FXML文件指定控制器,但这会导致问题。
编辑2:我忘了指定,加载两个FXML布局的超类是由多个节点继承的,这就是为什么我不能只创建一个Controller实例并将其直接传递给inner_loader。我需要(以某种方式)将实例引用传递给超类并将其用作控制器。
答案 0 :(得分:1)
您尝试做的事情并不完全清楚,但看起来您正在尝试使用继承和FXML-based custom components来创建具有专业化的模板。
这是可能的。您可以在构造函数中以通常的方式加载FXML。因为每个构造函数都调用它的超类构造函数,所以超类FXML将在子类FXML之前加载。
项目布局:
模板:
Template.fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.layout.VBox?>
<fx:root xmlns:fx="http://javafx.com/fxml/1" type="BorderPane">
<top>
<MenuBar>
<menus>
<Menu text="File">
<items>
<MenuItem text="Quit" onAction="#quit"/>
</items>
</Menu>
</menus>
</MenuBar>
</top>
<center>
<VBox fx:id="vboxCenter"/>
</center>
</fx:root>
组件(Template.java):
package template;
import java.io.IOException;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
public class Template extends BorderPane {
@FXML
private VBox vboxCenter ;
public Template() throws IOException {
FXMLLoader loader = new FXMLLoader(Template.class.getResource("Template.fxml"));
loader.setRoot(this);
loader.setController(this);
loader.load();
}
protected final VBox getCenterContentHolder() {
return vboxCenter ;
}
@FXML
private void quit() {
vboxCenter.getScene().getWindow().hide();
}
}
专业化:
Home.fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.text.Font?>
<fx:root xmlns:fx="http://javafx.com/fxml/1" type="VBox" alignment="CENTER">
<Label fx:id="welcomeLabel" text="Welcome" />
</fx:root>
组件(Home.java):
package home;
import java.io.IOException;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.control.Label;
import javafx.scene.text.Font;
import template.Template;
public class Home extends Template {
@FXML
private Label welcomeLabel ;
public Home() throws IOException {
// not necessary to explicitly call super(), it is called by default
// this call loads the template defined by the superclass
super();
FXMLLoader loader = new FXMLLoader(Home.class.getResource("Home.fxml"));
loader.setRoot(getCenterContentHolder());
loader.setController(this);
loader.load();
welcomeLabel.setFont(Font.font("Arial", 48));
}
}
应用:
package application;
import java.io.IOException;
import home.Home;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws IOException {
Scene scene = new Scene(new Home(), 400, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}