JavaFX文本流忽略指定的背景颜色和大小

时间:2017-02-04 22:33:31

标签: android javafx gluon-mobile textflow

public BasicView(String name) {
        super(name);



        Button b = new Button("test test test");

        this.getChildren().addAll(b);

        width = MobileApplication.getInstance().getScreenWidth();
        height = MobileApplication.getInstance().getScreenHeight();
        VBox box = new VBox();
        box.getChildren().add(b);
        setCenter(box);

        Text t = new Text(width/4,height/2,"OMG ITS TEXT ON THE SCREEN !!!! TEST TEST TEST TEST");
        t.setWrappingWidth(100);
        this.getChildren().add(t);
        b.setOnAction(e -> this.rotate(t));
        TextFlow tf = new TextFlow();
        Text t1= new Text("This text is not bold ");
        Text t2= new Text(",this part is,");
        t2.setStyle("-fx-font-weight: bold");
        t2.setFill(Color.RED);
        Text t3= new Text("and this part is italic");
        t3.setStyle("-fx-font-style: italic");
        tf.setPrefSize(30,30);
        tf.setMaxWidth(USE_PREF_SIZE);
        tf.getChildren().addAll(t1,t2,t3);
        tf.setStyle("-fx-background-color: red");

        tf.setLayoutX(100);
        tf.setLayoutY(100);

        this.getChildren().addAll(tf);

    }

enter image description here

生成的文本流不会换行,也没有背景色。文本的t3部分也不以斜体显示。我试过寻找答案,却一无所获。任何帮助将不胜感激。

编辑:我忘了提到我正在使用胶子移动插件来使用javaFx构建一个Android应用程序。

1 个答案:

答案 0 :(得分:2)

Gluon从BorderPane查看extends,因此您应将textFlow节点添加到五个可能位置之一(即中心)。

否则你将不得不处理它的布局(调用resizeRelocate)。

例如,将它添加到中心后,它将具有适当的大小,它将显示背景颜色,并将包装内容。

至于斜体,Gluon Charm使用Roboto fonts,常规,中等和粗体。如果您想要使用斜体样式,则需要将Roboto-Italic.ttf字体添加到资源(/src/main/resources/),然后只需加载它:

public BasicView(String name) {
    super(name);

    Font.loadFont(getClass()
            .getResourceAsStream("/Roboto-italic.ttf"), 10);

    TextFlow tf = new TextFlow();
    Text t1= new Text("This text is not bold ");
    Text t2= new Text(", this part is,");
    t2.setStyle("-fx-font-weight: bold");
    t2.setFill(Color.RED);
    Text t3= new Text(" and this part is italic");
    t3.setStyle("-fx-font-style: italic");
    tf.getChildren().addAll(t1,t2,t3);
    tf.setStyle("-fx-background-color: yellow");

    setCenter(tf);

}

textFlow