TextFlow类是JavaFX的一部分。 TextFlow类旨在布置富文本格式。它可用于在单个文本流中布局多个Text节点。 TextFlow类扩展了Pane类。
该类的构造函数:
- TextFlow():创建一个新的textflow对象。
- TextFlow(Node… c):使用指定的节点创建一个新的textflow对象。
常用方法:
方法 | 说明 |
---|---|
getLineSpacing() | 返回文本流的行距 |
getTextAlignment() | 返回文本流的文本对齐方式 |
setLineSpacing(double s) | 设置文本流的行距。 |
setTextAlignment(TextAlignment v) | 设置文本流的文本对齐方式。 |
以下示例程序旨在说明TextFlow类的用法:
- Java程序创建TextFlow并向其中添加文本对象:在此程序中,我们将创建一个名为text_flow的TextFlow和两个名为text_1和text_2的Text。使用setFill()和setFont()设置填充和字体。我们将使用getChildren().add()函数将文本添加到text_flow。将text_flow添加到场景并将场景添加到舞台。调用show()函数以显示最终结果。
// Java program to create a TextFlow and // add text object to it . import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.*; import javafx.scene.layout.*; import javafx.stage.Stage; import javafx.event.ActionEvent; import javafx.scene.paint.*; import javafx.scene.text.*; import javafx.scene.web.*; import javafx.scene.layout.*; import javafx.scene.shape.*; public class TextFlow_0 extends Application { // launch the application public void start(Stage stage) { try { // set title for the stage stage.setTitle("TextFlow"); // create TextFlow TextFlow text_flow = new TextFlow(); // create text Text text_1 = new Text("GeeksforGeeks\n"); // set the text color text_1.setFill(Color.RED); // set font of the text text_1.setFont(Font.font("Verdana", 25)); // create text Text text_2 = new Text("The computer science portal for geeks"); // set the text color text_2.setFill(Color.BLUE); // set font of the text text_2.setFont(Font.font("Helvetica", FontPosture.ITALIC, 15)); // add text to textflow text_flow.getChildren().add(text_1); text_flow.getChildren().add(text_2); // create a scene Scene scene = new Scene(text_flow, 400, 300); // set the scene stage.setScene(scene); stage.show(); } catch (Exception e) { System.out.println(e.getMessage()); } } // Main Method public static void main(String args[]) { // launch the application launch(args); } }
输出:
- Java程序创建一个TextFlow并向其中添加文本对象,设置文本Alignment并设置文本流的行间距:在此程序中,我们将创建一个名为text_flow的TextFlow和两个名为text_1和text_2的Text。使用setFill()和setFont()设置填充和字体。使用setTextAlignment()设置TextAlignment并使用setLineSpacing()函数设置行距。使用getChildren().add()函数将文本添加到text_flow。将text_flow添加到Vbox。将vbox场景和场景添加到舞台上。调用show()函数以显示最终结果。
// Java program to create a TextFlow and // add text object to it, set text Alignment // and set line spacing of the text flow. import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.*; import javafx.scene.layout.*; import javafx.stage.Stage; import javafx.scene.layout.*; import javafx.scene.paint.*; import javafx.scene.text.*; import javafx.geometry.*; import javafx.scene.layout.*; import javafx.scene.shape.*; public class TextFlow_1 extends Application { // launch the application public void start(Stage stage) { try { // set title for the stage stage.setTitle("FlowPane"); // create TextFlow TextFlow text_flow = new TextFlow(); // create text Text text_1 = new Text("GeeksforGeeks\n"); // set the text color text_1.setFill(Color.GREEN); // set font of the text text_1.setFont(Font.font("Verdana", 25)); // create text Text text_2 = new Text("The computer science portal for geeks"); // set the text color text_2.setFill(Color.BLUE); // set font of the text text_2.setFont(Font.font("Helvetica", FontPosture.ITALIC, 15)); // add text to textflow text_flow.getChildren().add(text_1); text_flow.getChildren().add(text_2); // set text Alignment text_flow.setTextAlignment(TextAlignment.CENTER); // set line spacing text_flow.setLineSpacing(20.0f); // create VBox VBox vbox = new VBox(text_flow); // set alignment of vbox vbox.setAlignment(Pos.CENTER); // create a scene Scene scene = new Scene(vbox, 400, 300); // set the scene stage.setScene(scene); stage.show(); } catch (Exception e) { System.out.println(e.getMessage()); } } // Main Method public static void main(String args[]) { // launch the application launch(args); } }
输出:
注意:以上程序可能无法在在线IDE中运行,请使用离线编译器。
参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextFlow.html
相关用法
- JavaFX 类 Pos用法及代码示例
- JavaFX 类 Tab用法及代码示例
- JavaFX 类 FontWeight用法及代码示例
- JavaFX 类 TextAlignment用法及代码示例
- JavaFX 类 FileChooser用法及代码示例
- JavaFX 类 DirectoryChooser用法及代码示例
- JavaFX 类 Popup用法及代码示例
- JavaFX 类 TitledPane用法及代码示例
- JavaFX 类 SplitPane用法及代码示例
- JavaFX 类 ClosePath用法及代码示例
- JavaFX 类 StackPane用法及代码示例
- JavaFX 类 LineTo用法及代码示例
- JavaFX 类 Font用法及代码示例
- JavaFX 类 VLineTo用法及代码示例
- JavaFX 类 VBox用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | TextFlow Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。