web-dev-qa-db-ja.com

JavaFx GridPane-要素を中央に配置する方法

1文字のラベルが付いたGridPaneを持っています。

ここに画像があります:

image

これがコードです:

int charSpacing = 1;
int charsInWidth = 28;
int charsInHeight = 16;

double charWidth = 15;
double charHeight = 20;

GridPane gp = new GridPane();
gp.setAlignment(Pos.CENTER);

Label[] tmp = new Label[charsInHeight*charsInWidth];

String text = "W";
int currArrPos = 0;

for(int y = 0; y < charsInHeight; y++) {
    HBox hbox = new HBox(charSpacing);

    for(int x = 0; x < charsInWidth; x++) {
        tmp[currArrPos] = new Label(text);
        tmp[currArrPos].setTextFill(Paint.valueOf("white"));

        tmp[currArrPos].setMinHeight(charHeight);
        tmp[currArrPos].setMinWidth(charWidth);
        tmp[currArrPos].setMaxHeight(charHeight);
        tmp[currArrPos].setMaxWidth(charWidth);

        tmp[currArrPos].setStyle("-fx-border-color: white;");
        hbox.getChildren().add(tmp[currArrPos++]);

        if(x%2 == 0){
            text = "I";
        } else{
            text = "W";
        }
    }
    gp.add(hbox, 1, y);
}
guiDisplay.getChildren().add(gp);

キャラクターを中央に配置するにはどうすればよいですか?

私はそれらをHBoxに入れ、間隔を空けました。ラベルのtextAlignmentCENTERにしようとしましたが、それはもちろん機能しません。

私もこれを試しました:

gp.setAlignment(Pos.CENTER);

誰かアイデアはありますか?ありがとう!

11
immerhart

ああ、それは簡単でした。間違った場所で位置合わせをしました。これを追加すると仕事ができます:

tmp[currArrPos].setAlignment(Pos.CENTER);

とにかくありがとう。

11
immerhart
28
Khaled Lela

要素のsetAligment(Pos.CENTER)プロパティを使用できます

または、要素を含むcontraintGridPaneに定義できます

<columnConstraints>
    <ColumnConstraints halignment="CENTER" />
</columnConstraints>

例:

<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.ColumnConstraints?>

<GridPane fx:controller="app.graphics.Controller"
          xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
    <columnConstraints>
        <ColumnConstraints halignment="CENTER" />
    </columnConstraints>
</GridPane>
5
Jorgesys