0

我有一个 FlowPane,每次添加新子项时我都想换行(另一个文本条目)

Text text1 = new Text("Here is some text");
Text text2 = new Text("This should be on a new line");

flowPane.getChildren().add(text1);
flowPane.getChildren().add(text2); //should go to the next line

这只是将文本彼此相邻地附加,如下所示:

"Here is some textThis should be on a new line"

有没有人知道解决这个问题的方法?似乎它应该是 API 的直接部分,但我找不到与此问题相关的任何内容。

4

1 回答 1

3

从 api: A horizontal flowpane (the default) will layout nodes in rows, wrapping at the flowpane's width.. 所以基本上,默认情况下,所有组件都将添加到同一行,直到没有足够的可用空间。

您想更改方向,或使用其他布局。

于 2013-04-05T12:20:20.473 回答