如何在 JavaFX 中 Text Flow 布局中换行文本?


为了在我们的应用程序中创建富文本内容,JavaFX 提供了一种名为文本流的特殊布局,由 javafx.scene.layout.TextFlow 类表示。通过使用它,你可以在单个文本流中布局多个文本节点。

由于它们是独立的节点,因此你可以为它们设置不同的字体。如果你尝试向此布局中添加非文本节点,它们将被视为嵌入对象,并只是插入到文本中。

换行文本

与 Label 和文本节点不同,文本流没有提供任何换行文本的方法。但它确实有一个名为 prefWidth 的属性,用于指定文本流布局的期望宽度。你可以使用 setPrefWidth() 方法为此属性设置值。

简而言之,你可以使用 setPrefWidth()setPrefHeight() 方法以期望的宽度或高度换行文本。

示例

import java.io.FileNotFoundException;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.scene.text.Font;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
import javafx.scene.text.TextFlow;
public class TextFlow_Wrap extends Application {
   public void start(Stage stage) throws FileNotFoundException {
      //Creating a text object
      Text text1 = new Text("Welcome To Tutorialspoint");
      Font font1 = Font.font("Brush Script MT", FontWeight.BOLD, 50);
      text1.setFont(font1);
      //Setting the color of the text
      text1.setFill(Color.BLUEVIOLET);
      text1.setStrokeWidth(1);
      text1.setStroke(Color.CORAL);
      Text text2 = new Text(" We provide free tutorials for readers in various technologies ");
      text2.setFont(new Font("Algerian", 30));
      text2.setFill(Color.ORANGERED);
      Text text3 = new Text("We believe in easy learning");
      //Setting font to the text
      Font font2 = Font.font("Ink Free", FontWeight.BOLD, 35);
      text3.setFont(font2);
      text3.setFill(Color.DIMGRAY);
      //Creating the text flow
      TextFlow textFlow = new TextFlow();
      //Wrapping the content of the text flow
      textFlow.setPrefWidth(595);
      textFlow.getChildren().addAll(text1, text2, text3);
      //Setting padding to the text flow
      textFlow.setPadding(new Insets(15, 15, 15, 15));
      //Setting the stage
      Group root = new Group(textFlow);
      Scene scene = new Scene(root, 595, 250, Color.BEIGE);
      stage.setTitle("Text Flow");
      stage.setScene(scene);
      stage.show();
   }
   public static void main(String args[]){
      launch(args);
   }
}

输出

更新于: 19-5-2020

787 次查看

开启您的 职业道路

通过完成课程获得认证

开始
广告
© . All rights reserved.