我需要显示多行只读文本 - 可以使用哪个控件?它应该只显示文本,就像标签一样,但是标签不支持多行?
感谢您的任何提示:-)
您可以在Label
.
如果文本中有\n
(换行符)字符,则标签将换行到换行符所在的新行。
如果标签已wrapText
设置为 true 并且没有足够的空间来显示单行文本,则标签会将文本换行到新行。
如果您想要不同样式的文本,那么,如果使用 JavaFX 2,请将多个标签放在 a 中FlowPane
,或者,如果您使用 Java 8+,则将标签放在一个TextFlow
组件中。
由以下代码产生:
import javafx.scene.Scene;
import javafx.application.Application;
import javafx.scene.control.Label;
import javafx.scene.image.*;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class LoveMeNot extends Application {
public static void main(String[] args) throws Exception { launch(args); }
@Override public void start(final Stage stage) throws Exception {
Label label = new Label(WORDS);
label.setWrapText(true);
label.setStyle("-fx-font-family: \"Comic Sans MS\"; -fx-font-size: 20; -fx-text-fill: darkred;");
ImageView image = new ImageView(IMAGE);
image.setOpacity(0.3);
StackPane layout = new StackPane();
layout.setStyle("-fx-background-color: mistyrose; -fx-padding: 10;");
layout.getChildren().setAll(image, label);
stage.setTitle("Love Me Not");
stage.setScene(new Scene(layout));
stage.show();
}
// creates a triangle.
private static final String WORDS =
"Love not me for comely grace,\n" +
"For my pleasing eye or face,\n" +
"Nor for any outward part,\n" +
"No, nor for my constant heart,\n" +
"For these may fail, or turn to ill.\n" +
"So thou and I must sever.\n" +
"Keep therefore a true woman’s eye,\n" +
"And love me still, but know not why,\n" +
"So hast thou the same reason still\n" +
"To doat upon me ever.";
private static final Image IMAGE =
new Image("http://icons.iconarchive.com/icons/artdesigner/gentle-romantic/256/rose-icon.png");
}
尝试运行上述程序并调整窗口大小以查看\n
标签文本中新行值的效果以及标签上的wrapText
属性。将设置从 true 更改为 false,以查看打开和关闭wrapText
之间的区别。wrapText
如果你为你的 设置一个你想要的最大宽度Label
,那么你设置setWrapText
为true
它显示文本多行:
Label label = new Label("Your long text here");
label.setMaxWidth(180);
label.setWrapText(true);
您也可以使用Text
多行显示,wrappingWidthProperty
根据您的需要进行设置。
Text text = new Text();
text.wrappingWidthProperty().set(345);
在这段代码中,我将最大宽度设置为345.0
,所以当文本的大小超过345
像素时,将被换行到下一行。
如果文本中包含 \n (换行符)字符,则标签将在换行符所在的任何位置换行。
当您从 FXML 文件和可视 FXML 编辑器设置文本时,它不起作用。
文本类也可用。这个答案中的一个很好的解释label-and-text-differences-in-javafx基本上在没有输入的地方使用 Text,否则 Label 更好。