出于教育目的,我正在尝试将热键添加到我的javafx应用程序中。使用我的示例代码,我无法通过热键访问我的标签。使用按钮我可以调用相同的方法成功更新我的标签。
观点:
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="62.0" prefWidth="91.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fx.probleme.SampleViewController">
<children>
<Label id="label" fx:id="label" layoutX="14.0" layoutY="45.0" text="Label" />
<Button layoutX="20.0" layoutY="14.0" mnemonicParsing="false" onAction="#updateText" text="Button" />
</children>
</AnchorPane>
控制器:
package fx.probleme;
import javafx.application.Application;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;
import javafx.stage.Stage;
public class SampleViewController extends Application {
@FXML
Label label;
@FXML
void updateText() {
label.setText(label.getText() + "+");
}
@Override
public void start(Stage stage) throws Exception {
Parent parent = FXMLLoader.load(this.getClass().getResource("SampleView.fxml"));
Scene scene = new Scene(parent);
scene.setOnKeyPressed((final KeyEvent keyEvent) -> {
if (keyEvent.getCode() == KeyCode.NUMPAD0) {
updateText();
}
});
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
答案 0 :(得分:0)
您获得NullPointerException
,因为在该阶段Label
未初始化,初始化在initialize
中完成。
首先,您已将主类与控制器类混合,您可能希望将它们分开,设置implements Initializable
的控制器,之后在initialize
方法中可以调用组件的任何方法,因为在其中初始化由@FXML
注释的所有组件。在你的情况下,start方法尚未初始化。此外,您可能不想使用场景的方法,而是可以将事件,操作添加到内容窗格,例如AnchorPane
。
我建议将控制器类与主类分开,并实现Initializable
。这有助于您对应用程序有更好的视野,您可以看到组件的初始化位置,您确定在没有NPE的情况下使用他们的方法。
如果您不想在单独的类中(建议这样做),可以在fx:id
文件中为AnchorPane
添加.fxml
,然后您可以添加方法onKeyPressed
就像你为Button做的那样。