我有一个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的直接部分,但我找不到与此问题相关的任何内容。
答案 0 :(得分:2)
来自api:A horizontal flowpane (the default) will layout nodes in rows, wrapping at the flowpane's width.
。所以基本上,默认情况下,所有组件都将添加到同一行,直到没有足够的可用空间。
您想要更改方向,或使用其他布局。