我是 javafx 的新手。
我正在尝试构建一个聊天面板显示消息的信使。我想对齐消息,就像我自己的消息在左侧,其他消息在右侧。
为了显示消息,我在添加文本的地方使用 TextFlow。但是对齐不起作用。
TextFLow tf=new TextFlow();
Text t1= new Text("Hi");
Text t2= new Text("Hello");
t1.setTextAlignment(TextAlignment.RIGHT);
t2.setTextAlignment(TextAlignment.LEFT);
tf.getChildren().addAll(t1,t2);
但是对齐不起作用。两个文本都在左边。我该怎么办?