如何在 JavaFX 的 TextArea 中的字符串末尾添加内联图像?

How to add an inline image to the end of a string in a TextArea in JavaFX?

我正在尝试在我的客户键入 :)

时向我的聊天程序添加一个 emoji

我正在尝试将其添加到 FXML 控制器中。当用户键入 :) 使用以下 代码片段 时,我已捕获:

if(chat.contains(":)")) {
    ...
} 

我的聊天记录被打印到一个名为 taChat

textarea
taChat.appendText(chat + '\n');

感谢任何帮助!

更好的方法是使用 TextFlow 而不是 TextArea。

优点:

  • 个人 Text 在 TextFlow 中被视为 children。它们可以单独添加和访问。
  • ImageView 可以直接添加到 TextFlow 作为 child。

支持笑脸的简单聊天window:)

import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.image.ImageView;
import javafx.scene.input.KeyCode;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import javafx.scene.text.TextFlow;
import javafx.stage.Stage;

public class ChatWindowWithSmiley extends Application {

    public void start(Stage primaryStage) {

        TextFlow textFlow = new TextFlow();
        textFlow.setPadding(new Insets(10));
        textFlow.setLineSpacing(10);
        TextField textField = new TextField();
        Button button = new Button("Send");
        button.setPrefWidth(70);

        VBox container = new VBox();
        container.getChildren().addAll(textFlow, new HBox(textField, button));
        VBox.setVgrow(textFlow, Priority.ALWAYS);

        // Textfield re-sizes according to VBox
        textField.prefWidthProperty().bind(container.widthProperty().subtract(button.prefWidthProperty()));

        // On Enter press
        textField.setOnKeyPressed(e -> {
            if(e.getCode() == KeyCode.ENTER) {
                button.fire();
            }
        });

        button.setOnAction(e -> {
            Text text;
            if(textFlow.getChildren().size()==0){
                text = new Text(textField.getText());
            } else {
                // Add new line if not the first child
                text = new Text("\n" + textField.getText());
            }
            if(textField.getText().contains(":)")) {
                ImageView imageView = new ImageView("http://files.softicons.com/download/web-icons/network-and-security-icons-by-artistsvalley/png/16x16/Regular/Friend%20Smiley.png");
                // Remove :) from text
                text.setText(text.getText().replace(":)"," "));
                textFlow.getChildren().addAll(text, imageView);
            } else {
                textFlow.getChildren().add(text);
            }
            textField.clear();
            textField.requestFocus();
        });

        Scene scene = new Scene(container, 300, 400);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

输出

如需 unicode 表情符号支持,请访问 How to support Emojis