1文字のラベルが付いたGridPane
を持っています。
ここに画像があります:
これがコードです:
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
に入れ、間隔を空けました。ラベルのtextAlignment
をCENTER
にしようとしましたが、それはもちろん機能しません。
私もこれを試しました:
gp.setAlignment(Pos.CENTER);
誰かアイデアはありますか?ありがとう!
ああ、それは簡単でした。間違った場所で位置合わせをしました。これを追加すると仕事ができます:
tmp[currArrPos].setAlignment(Pos.CENTER);
とにかくありがとう。
GridPane.setHalignment(tmp[currArrPos], HPos.CENTER);
GridPaneを使用してコントロールをレイアウトする要素のsetAligment(Pos.CENTER)
プロパティを使用できます
または、要素を含むcontraint
をGridPane
に定義できます
<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>