1

JavaFX で最初のアプリケーションを作成しようとしていましたが、これにはとてもイライラしました。アプリケーションのこれらの要素は SceneBuilder では完璧ですが、今はちょうどずれています!

SceneBuilder で

実際には

アプリを実行したときのこのエラーが原因だと思います:

WARNING: Loading FXML document with JavaFX API of version 11.0.1 by JavaFX runtime of version 8.0.231

AnchorPane 属性を次のように変更しようとしました。

<AnchorPane prefHeight="129.0" prefWidth="205.0" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml"">
   ...
</AnchorPane>

しかし、それは警告を修正するだけで、ずれは修正しません。

ここに私の完全なコードがあります:

Main.java

package application;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.stage.Stage;
import javafx.scene.Scene;
//import javafx.scene.layout.BorderPane;


public class Main extends Application {
    @Override
    public void start(Stage primaryStage) {
        try {
            //BorderPane root = new BorderPane();
            Parent root = FXMLLoader.load(getClass().getResource("Root.fxml"));
            Scene scene = new Scene(root,400,400);
            scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
            primaryStage.setScene(scene);
            primaryStage.show();
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        launch(args);
    }
}

ルート.fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>


<AnchorPane prefHeight="129.0" prefWidth="205.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <TextField layoutX="28.0" layoutY="23.0" />
      <Button layoutX="77.0" layoutY="65.0" mnemonicParsing="false" text="Button" />
   </children>
</AnchorPane>
4

1 に答える 1

1

@Slaw が述べたように、AnchorPaneはレスポンシブ レイアウトではありません。垂直に配置された 2 つのノードがあるため、 VBoxCENTER配置で使用することを検討してください。

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.geometry.Pos?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.VBox?>


<VBox prefHeight="129.0"  alignment="CENTER" prefWidth="205.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <TextField fx:id="INPUT_FIELD" />
      <Button fx:id="SUBMIT" mnemonicParsing="false" text="Button" />
   </children>
</VBox>

通常、AnchorPane親レイアウトとして設定でき、その上に VBox を配置し、VBox にコントロール (Button、TextField など) を追加できます。

アプリを実行したときのこのエラーが原因だと思います:

警告: バージョン 8.0.231 の JavaFX ランタイムによって、バージョン 11.0.1 の JavaFX API を使用して FXML ドキュメントをロードしています

いいえ、これは単なる警告です。ここで大きな議論を見つけることができます。

于 2020-01-04T02:36:30.950 に答える