Я пытаюсь динамически добавлять объекты / элементы, получая данные из базы данных.Я пытаюсь добиться того, чтобы я хотел скопировать тот же HBox
с тем же attributes
, например, FontAwesomeIcon
и т. Д. Однако я просто хочу изменить метки.
Эточего я пытаюсь достичь
Я хочу иметь возможность динамически создавать несколько HBox
, аналогично другим, но просто изменить Labels
значения, которые я получаю из базы данных.
FXML
Класс
<?xml version="1.0" encoding="UTF-8"?>
<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.Tab?>
<?import javafx.scene.control.TabPane?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.shape.Circle?>
<?import javafx.scene.text.Font?>
<TabPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0"
prefWidth="700.0" stylesheets="@stylesheet.css" tabClosingPolicy="UNAVAILABLE"
xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<tabs>
<Tab text="Members">
<graphic>
<FontAwesomeIconView glyphName="GROUP" glyphStyle="-fx-fill:#4D4D4D" size="14"/>
</graphic>
<content>
<AnchorPane prefHeight="371.0" prefWidth="700.0">
<children>
<ScrollPane hbarPolicy="NEVER" prefHeight="381.0" prefWidth="172.0">
<content>
<VBox fx:id="vboxAdding" prefHeight="57.0" prefWidth="157.0"
style="-fx-background-color: #4D4C4F;">
<children>
<ListView fx:id="sidebarListview" prefHeight="200.0" prefWidth="157.0"/>
<HBox alignment="CENTER_LEFT" styleClass="HBox-Shadow">
<children>
<FontAwesomeIconView glyphName="SEARCH" glyphStyle="-fx-fill:#B2B2B2"
size="22"/>
<TextField promptText="Search"
style="-fx-background-color: transparent;-fx-text-fill: white"
HBox.hgrow="ALWAYS">
<font>
<Font size="15.0"/>
</font>
</TextField>
</children>
<padding>
<Insets bottom="5.0" left="10.0" top="5.0"/>
</padding>
</HBox>
<HBox fx:id="sidebarMembers" onMouseClicked="#openSidebarMembers">
<children>
<FontAwesomeIconView glyphName="USER" glyphStyle="-fx-fill:#B2B2B2"
size="22">
<HBox.margin>
<Insets top="3.0"/>
</HBox.margin>
</FontAwesomeIconView>
<VBox HBox.hgrow="ALWAYS">
<children>
<Label fx:id="sidebarName" text="Admin" textFill="WHITE">
<font>
<Font name="System Bold" size="18.0"/>
</font>
</Label>
<Label text="Administrator" textFill="WHITE"/>
</children>
<padding>
<Insets left="10.0"/>
</padding>
</VBox>
</children>
<padding>
<Insets bottom="10.0" left="10.0" top="10.0"/>
</padding>
</HBox>
<HBox fx:id="sidebarMembers1" onMouseClicked="#openSidebarMembers">
<children>
<FontAwesomeIconView glyphName="USER" glyphStyle="-fx-fill:#B2B2B2"
size="22">
<HBox.margin>
<Insets top="3.0"/>
</HBox.margin>
</FontAwesomeIconView>
<VBox HBox.hgrow="ALWAYS">
<children>
<Label fx:id="sidebarName1" text="Michael" textFill="WHITE">
<font>
<Font name="System Bold" size="18.0"/>
</font>
</Label>
<Label text="Administrator" textFill="WHITE"/>
</children>
<padding>
<Insets left="10.0"/>
</padding>
</VBox>
</children>
<padding>
<Insets bottom="10.0" left="10.0" top="10.0"/>
</padding>
</HBox>
</children>
</VBox>
</content>
</ScrollPane>
<VBox alignment="TOP_CENTER" layoutX="172.0" prefHeight="381.0" prefWidth="538.0"
style="-fx-background-color: #4D4C4F;">
<children>
<Circle fx:id="bigImageView" fill="BLUE" radius="50.0">
<VBox.margin>
<Insets bottom="20.0" top="30.0"/>
</VBox.margin>
</Circle>
<VBox alignment="TOP_CENTER">
<children>
<Label fx:id="summaryTitleName" text="Admin" textFill="WHITE">
<font>
<Font size="20.0"/>
</font>
</Label>
<Label text="Administrator" textFill="WHITE">
<font>
<Font name="System Italic" size="15.0"/>
</font>
<VBox.margin>
<Insets/>
</VBox.margin>
<padding>
<Insets bottom="5.0"/>
</padding>
</Label>
<Separator prefWidth="200.0"/>
</children>
</VBox>
<HBox alignment="CENTER" prefHeight="170.0" prefWidth="528.0">
<children>
<VBox prefHeight="168.0">
<children>
<Label text="Full Name: Admin Admin" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="Position: Administrator" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="Hourly Rate: £19.99" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="Graduated: MDX University" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
</children>
<HBox.margin>
<Insets/>
</HBox.margin>
<padding>
<Insets left="10.0" right="10.0"/>
</padding>
</VBox>
<VBox prefHeight="168.0">
<children>
<Label text="Languages: Java, C++, JavaScript" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="Country: United Kingdom" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="City: Wembley, London" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
<Label text="Address: 64, Beverley Gardens" textFill="WHITE">
<font>
<Font size="15.0"/>
</font>
<VBox.margin>
<Insets bottom="10.0" top="10.0"/>
</VBox.margin>
</Label>
</children>
<padding>
<Insets left="10.0" right="10.0"/>
</padding>
<HBox.margin>
<Insets/>
</HBox.margin>
</VBox>
</children>
</HBox>
</children>
</VBox>
</children>
</AnchorPane>
</content>
</Tab>
<Tab text="Overview">
<graphic>
<FontAwesomeIconView glyphName="PIE_CHART" glyphStyle="-fx-fill:#4D4D4D" size="14"/>
</graphic>
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0"/>
</content>
</Tab>
<Tab text="Control Panel">
<graphic>
<FontAwesomeIconView glyphName="WRENCH" glyphStyle="-fx-fill:#4D4D4D" size="14"/>
</graphic>
<content>
</content>
</Tab>
</tabs>
</TabPane>
Итак, как мне этого добиться, есть ли способ скопировать / вставить элемент в FXML, а затем просто изменить метки внутри этого элемента?
Количество HBoxes
не является статичным, оно зависит от того, сколько членов я получил в своей базе данных.