Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaFX: Fit child elements to HBox width

Tags:

width

javafx

hbox

Is it possible to manage child elements in a HBox, so that the sum of the widths of all child elements is equal to the width of the HBox?

So that elements fill the HBox and no space is left.

The height of the child elements is by default the height of the HBox, so how about the width? I don't want to calculate the width in my program. It would be better if the layout does this automatically, so that no calculation is needed.

like image 229
AKR Avatar asked Feb 26 '14 14:02

AKR


1 Answers

It depends what kind of children does the HBox contain. Some of the children may not be resizable nodes. However, generally speaking, you can use HBox.setHgrow() method and set the same Priority for all children of hbox. The explanation is in its javadoc:

Sets the horizontal grow priority for the child when contained by an hbox. If set, the hbox will use the priority to allocate additional space if the hbox is resized larger than it's preferred width. If multiple hbox children have the same horizontal grow priority, then the extra space will be split evening between them. If no horizontal grow priority is set on a child, the hbox will never allocate it additional horizontal space if available. Setting the value to null will remove the constraint.

Additionally, if you are trying to obtain a grid-like layout then try out other layout options, for instance TilePane or FlowPane and maybe GridPane.

like image 124
Uluk Biy Avatar answered Oct 02 '22 04:10

Uluk Biy