JavaFX App:在窗格之间切换不会加载设置内容

时间:2018-05-04 09:30:15

标签: java user-interface javafx fxml

我有带侧边菜单栏的桌面应用程序。主窗口为BorderPaneInsertLeft包含VBox。我设置了Hbox buttons和他们的行为然后我将它们逐个添加到VBoxInsertCenter只有Pane,其中包含很多元素。

我为每个GUI布局创建了3个fxml文件。

  • sample.fxml - BorderPane:InsertLeft->菜单(VBox),InsertCenter->空窗格
  • tab1_content.fxml - 用ProgressBar,标签和按钮填充的窗格
  • tab2_content.fxml - 尚未实施(空窗格)

这些fxml文件中的每一个都有自己的控制器。

我想在菜单按钮上点击sample.fxml内的borderPane.center()内容。

我设法解决了一些问题,但主要问题是将数据加载到.fxml视图中。

当我运行我的应用程序时,它完美运行,每个fxml文件都有他的FXMLLoader,它将内容加载到主控制器内的borderPane中。

点击按钮时出现问题。它将切换窗格,但实际内容将重置为默认状态,Main.class初始化将完全被忽略。按钮侦听器和标签值未初始化。它只是空的fxml布局。 Main.class中的每个变量,我想从Tab1Controller访问的是返回NullPointerException - 甚至是方法。

每个控制器都扩展了AbstractController,它包含在start()方法中初始化的Main.class实例。所以我应该能够随时访问每个Main.class方法/变量。

问题Gif:

enter image description here

一些代码示例:

我的Main.class start()方法:

    public Controller myController;

    @Override
        public void start(Stage primaryStage) throws Exception {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(getClass().getResource("/sample.fxml"));
            myController = new Controller();
            myController.setMainApp(this);
            loader.setController(myController);
            Parent root = loader.load();
            primaryStage.setTitle("Simple App");
            primaryStage.setScene(new Scene(root));
            primaryStage.show();

            <other stuff>
    }

public void setDefaultViewProperties(){
        currentScanningFileProperty = new SimpleStringProperty();
        myController.tab1Controller.actualPath.textProperty().bind(currentScanningFileProperty); //NullPointerException while called from Controller
        fileCounterProperty = new SimpleLongProperty();
        myController.tab1Controller.numOfScanned.textProperty().bind(fileCounterProperty.asString());
        maliciousFilesCounterProperty = new SimpleIntegerProperty();
        myController.tab1Controller.numOfMaliciousFiles.textProperty().bind(maliciousFilesCounterProperty.asString());

        myController.tab1Controller.fileChoiceBtn.setOnMouseClicked(event -> chooseFile());
        myController.tab1Controller.runScanBtn.setOnMouseClicked(event -> new Thread(() -> {
            try {
                resetValues();
                startFileWalking(chosenFile);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }).start());
    }

MainController:

package sample;

import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.geometry.Insets;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;

public class Controller extends AbstractController implements Initializable{
    public HBox sideMenu;
    public VBox mainMenu;
    public BorderPane borderPane;
    public Boolean isButton1Pressed = false;
    public Boolean isButton2Pressed = false;
    public static final String TAB_1 = "TAB-1";
    public static final String TAB_2 = "TAB-2";
    public Button malwareButton;
    public Button webShieldButton;
    public Tab1Controller tab1Controller;
    public Tab2Controller tab2Controller;


    @Override
    public void initialize(URL location, ResourceBundle resources) {

        createMenuButtons();
        setSideMenu();
        setMenuButtonsListeners();
    }

    private void setSideMenu(){
        mainMenu.getChildren().add(item(malwareButton));
        mainMenu.getChildren().add(item(webShieldButton));
        mainMenu.setStyle("-fx-background-color:#004D40");
    }

    private HBox item(Button menuButton){
        menuButton.setPrefSize(200, 50);
        menuButton.setStyle("-fx-background-color: transparent;");
        menuButton.setTextFill(Color.web("#E0F2F1"));
        menuButton.setPadding(Insets.EMPTY);
        sideMenu = new HBox(menuButton);
        return sideMenu;
    }

    public void setMenuButtonsListeners(){
        malwareButton.setOnMousePressed(event -> {
            setButtonStylePressed(malwareButton);
            setButtonStyleUnpressed(webShieldButton);
            isButton1Pressed = true;
            isButton2Pressed = false;
            loadTab1Content();
            main.setDefaultViewProperties();
        });

        webShieldButton.setOnMousePressed(event -> {
            setButtonStylePressed(webShieldButton);
            setButtonStyleUnpressed(malwareButton);
            isButton1Pressed = false;
            isButton2Pressed = true;
            loadTab2Content();
        });

        malwareButton.setOnMouseExited(event -> {
            if(!isButton1Pressed){
                setButtonStyleUnpressed(malwareButton);
            }
        });
        webShieldButton.setOnMouseExited(event -> {
            if(!isButton2Pressed){
                setButtonStyleUnpressed(webShieldButton);
            }
        });

        malwareButton.setOnMouseEntered(event -> setButtonStylePressed(malwareButton));
        webShieldButton.setOnMouseEntered(event -> setButtonStylePressed(webShieldButton));
    }

    public void setButtonStylePressed(Button btn){
        btn.setStyle("-fx-background-color: #E0F2F1");
        btn.setTextFill(Color.web("#004D40"));
    }

    public void setButtonStyleUnpressed(Button btn){
        btn.setStyle("-fx-background-color: transparent");
        btn.setTextFill(Color.web("#E0F2F1"));
    }

    private void loadTab1Content(){
        FXMLLoader tab1loader = new FXMLLoader();
        tab1loader.setLocation(getClass().getResource("/tab_1_content.fxml"));
        try {
            if (tab1Controller == null){
                tab1Controller = new Tab1Controller();
            }
            tab1loader.setController(tab1Controller);
            borderPane.setCenter(tab1loader.load());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private void loadTab2Content(){
        FXMLLoader tab2loader = new FXMLLoader();
        tab2loader.setLocation(getClass().getResource("/tab_2_content.fxml"));
        try {
            if (tab2Controller == null){
                tab2Controller = new Tab2Controller();
            }
            tab2loader.setController(tab2Controller);
            borderPane.setCenter(tab2loader.load());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private void createMenuButtons(){
        malwareButton = new Button();
        malwareButton.setText(TAB_1);
        webShieldButton = new Button();
        webShieldButton.setText(TAB_2);
    }
}

Tab1Controller:

package sample;

import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ProgressBar;
import javafx.stage.Modality;
import javafx.stage.Stage;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.ResourceBundle;

/**
 * Created by admin on 5. 5. 2018.
 */
public class Tab1Controller extends AbstractController implements Initializable {


    public ProgressBar progressBar;
    public Button runScanBtn;
    public Button fileChoiceBtn;
    public Label chosenPath;
    public Label actualPath;
    public Label numOfMaliciousFiles;
    public Label hashValue;
    public Label scanFinishedMsg;
    public Label numOfScanned;
    public Button showFoundMalwareButton;



    @Override
    public void initialize(URL location, ResourceBundle resources) {


        runScanBtn.setDisable(true);
        scanFinishedMsg.setVisible(false);
        showFoundMalwareButton.setVisible(false);
        showFoundMalwareButton.setOnAction(event -> showPopupWindow());
    }

更新#1 - 点击按钮后通过Main.class更新fxml值

我终于设法毫无例外地运行应用程序。我不得不为窗格fxml布局创建下一个Controller,名为Tab1Controller。当我初始化Controller时,它立即初始化了Tab1Controller。因此,当我想更改中心BorderPane标签时,我必须调用myController.tab1Controller.tabLabel.setText()

我不知道这个问题是否很好。 但现在我回到了我原来的问题。当我单击TAB-1时,它将加载内容,但值不会初始化为默认状态。

例如,我有几个实时更新的标签。我用默认值将一些SimpleProperties绑定到它中。它以前工作过,但由于我有三个控制器,它将首次加载数据,但当我点击TAB-1按钮时,它将只加载fxml内容,但它不会设置这些标签。

所以我在Main.class中创建了public方法,每当我从Controller切换到TAB-1时我都会调用它。

public void setDefaultViewProperties(){
    myController.tab1Controller.actualPath.textProperty().bind(currentScanningFileProperty);
    myController.tab1Controller.numOfScanned.textProperty().bind(fileCounterProperty.asString());
    myController.tab1Controller.numOfMaliciousFiles.textProperty().bind(maliciousFilesCounterProperty.asString());
}

但现在每次点击TAB-1我都会

java.lang.NullPointerException: Cannot bind to null

3 个答案:

答案 0 :(得分:0)

您可以使用setVisible()方法创建两个窗格并在它们之间切换

示例:

void btn1Clicked() {
   pane1.setVisible(true);
   pane2.setVisible(false);
}

void btn2Clicked() {
   pane1.setVisible(false);
   pane2.setVisible(true);
}

答案 1 :(得分:0)

答案 2 :(得分:0)

解决。我不确定如何,但setDefaultViewProperties()目前没有抛出NullPointerException。我没有改变代码中的任何内容:

malwareButton.setOnMousePressed(event -> {
                setButtonStylePressed(malwareButton);
                setButtonStyleUnpressed(webShieldButton);
                isButton1Pressed = true;
                isButton2Pressed = false;
                loadTab1Content();
                main.setDefaultViewProperties();
            });