我正在尝试创建聊天应用。
所以我有一个textarea,它会显示一些这样的文字: final TextArea chatTextArea = new TextArea(); chatTextArea.setEditable(假);
chatTextArea.appendText("I am 21 years old");
chatTextArea.appendText("Hello, my name is Robin.");
final TextField textFieldChatInput = new TextField();
Button buttonMessageSend = new Button("Senden");
buttonMessageSend.setOnAction(new EventHandler<ActionEvent>() {
public void handle(final ActionEvent t) {
chatTextArea.appendText(textFieldChatInput.getText());
textFieldChatInput.clear();
}
});
我想要一个三栏设计:
Robin Hello, my name is Robin. 6.1.14 - 9:10
(Robin) I'm 21 years old. 6.1.14 - 9:11
...
我也不知道如何打破行&gt;。&gt;
有没有人知道如何做到这一点?
问候和新年快乐 街渡