我正在解析XML文件,并使用XML值填充javafx字段。 但是,这些字段位于选项卡中,我想根据XML中的节点数克隆该选项卡及其内容。 下面是fxml文件的屏幕截图:
我知道一种实现方法,就是将选项卡内容包含在单独的FXML文件中并包含它,但是这样做的问题是我必须用数据填充字段,并且如果不能,则无法填充数据使用重复的fx:ids多次加载同一fxml文件。
有什么方法可以达到上述目的?
答案 0 :(得分:0)
这里是阅读注释的示例,如果您想自己保存一行代码,可以在选项卡中添加fxml并将其加载到选项卡窗格中
主类
public class Main extends Application {
@Override
public void start(Stage stage) {
TabPane tabPane = new TabPane();
ArrayList<Controller> controllerArrayList = new ArrayList<>();
for (int i = 0; i < 5; i++) {
//Don't just load it into the new node save a reference
FXMLLoader loader = new FXMLLoader(getClass().getResource("/sample.fxml"));
try {
//Load it into the new parent node
Tab tab = new Tab("Tab:"+i, loader.load());
//Save contoller to arraylist of controllers
controllerArrayList.add(loader.getController());
//Add to tabPane
tabPane.getTabs().add(tab);
} catch (IOException e) {
e.printStackTrace();
}
}
//Do some stuff with your contollers
int index = 0;
for (Controller controller : controllerArrayList) {
controller.setLabel("index:"+index);
controller.setTextField("index:"+index++);
}
Scene scene = new Scene(tabPane);
stage = new Stage();
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) { launch(args); }
}
控制器类
public class Controller{
public TextField textField;
public Label label;
public void setTextField(String text){ textField.setText(text); }
public void setLabel(String text){ label.setText(text); }
}
FXML
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.VBox?>
<VBox alignment="CENTER" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller">
<children>
<Label fx:id="label"/>
<TextField fx:id="textField" />
</children>
</VBox>