У меня есть элементы в моих списках ролей, но они не отображаются в моей программе после запуска в окне.Gui сделано в Scene Builder.Когда я запускаю программу, поле, где должны быть элементы, является белым пустым, просто пустым.
экран печати программы https://zapodaj.net/c60f99a10f300.jpg.html
строитель сцены https://zapodaj.net/26fbf2123397c.jpg.html
Когда я использую демонстрационные данныев Scene Builder он показывает lorem ipsum и т. д.
здесь вы получили код от контроллера и документ fmxl.
package sample;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.ListView;
import javafx.scene.control.SelectionMode;
import java.net.URL;
import java.util.*;
public class ControllerBindColors implements Initializable {
@FXML
private ListView<String > roles;
@FXML
private ListView<String> colors;
@FXML
private ListView<?> binded;
String selectedRole;
String selectedColor;
int numberOfPlayers;
@Override
public void initialize(URL location, ResourceBundle resources) {
}
public void initData(int numberOfPlayers, String selectedRole, String selectedColor) {
this.numberOfPlayers = numberOfPlayers;
this.selectedRole = selectedRole;
this.selectedColor = selectedColor;
ObservableList<String> itemsRoles = FXCollections.observableArrayList("test","test2","test3");
roles = new ListView<>();
roles.setItems(itemsRoles);
roles.getItems().addAll("test555");
roles.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
System.out.println(roles.getItems());
}
}
fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox spacing="10.0" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.ControllerBindColors">
<children>
<HBox alignment="CENTER">
<children>
<ListView fx:id="roles" prefHeight="200.0" prefWidth="200.0" />
<VBox alignment="CENTER" spacing="10.0">
<children>
<Button fx:id="backBtn" ellipsisString="BACK" mnemonicParsing="false" onAction="#back" text="BACK" />
<Label prefHeight="51.0" prefWidth="71.0" text="Select role and color then bind." textAlignment="CENTER" wrapText="true" />
<Button fx:id="bindbtn" ellipsisString="BIND" mnemonicParsing="false" onAction="#bind" text="BIND" />
<Button fx:id="nextBtn" ellipsisString="NEXT" mnemonicParsing="false" onAction="#next" text="NEXT" />
</children>
<opaqueInsets>
<Insets />
</opaqueInsets>
</VBox>
<ListView fx:id="colors" prefHeight="200.0" prefWidth="200.0" />
</children>
</HBox>
<ListView fx:id="binded" prefHeight="200.0" prefWidth="200.0" />
</children>
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</VBox>
initData ControllerNewGame.java startGame () вызывается при активированной кнопке
@FXML
void startGame() {
try{
Parent root= FXMLLoader.load(getClass().getResource("BindColor.fxml"));
ControllerBindColors controller = new ControllerBindColors();
int number = (int)slider.getValue();
controller.initData(number,selectedRole.getText(),selectedColor.getText());
Stage toGame = (Stage)startButton.getScene().getWindow();
toGame.setTitle("Parasite Pip-Boy Bind Color Menu");
toGame.setScene(new Scene(root, 600, 300));
toGame.show();
}catch(IOException e) {
startButton.setText("Reinstall program. BindColor.fxml is missing or is corrupted. :(");
}
}
список содержит пункты, наверняка в консоли напечатаны все 4 элемента [test, test2, test3, test555]