当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaFX 类 FontWeight用法及代码示例


FontWeight类是JavaFX的一部分。 FontWeight类定义字体的粗细。 FontWeight类指定在系统上搜索字体时可以使用的不同字体权重。 FontWeight类继承Enum类。

常用方法:

方法 说明
findByName(String n) 按其名称返回FontWeight。
findByWeight(int w) 返回最接近的FontWeight作为权重值。
getWeight() 返回视觉重量。
valueOf(String n) 返回具有指定名称的此类型的枚举常量。
values() 返回FontWeight类型的所有值。

以下示例程序旨在说明FontWeight类的用法:


  1. Java程序创建一个TextFlow并向其中添加文本对象,设置文本Alignment,还设置文本字体的字体粗细并设置文本流的行间距:在此程序中,我们将创建一个名为tile_pane的TilePane。将名为label的Label和一些按钮添加到tile_pane。使用setAlignment()函数设置tile_pane的对齐方式。将字体的字体粗细设置为EXTRA_BOLD。将tile_pane添加到场景并将场景添加到舞台,并调用show()函数以显示最终结果。
    // Java program to create a TextFlow and 
    // add text object to it, set text Alignment 
    // and also set font weight of the font of text 
    // 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 FontWeight_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("FontWeight"); 
      
                // 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", FontWeight.EXTRA_BOLD, 25)); 
      
                // set text 
                text_flow.getChildren().add(text_1); 
      
                // 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); 
        } 
    }

    输出:

  2. Java程序创建一个TextFlow并向其中添加文本对象,设置文本Alignment并设置文本字体的字体粗细,并设置一个组合框以更改字体粗细并设置文本流的行间距:在此程序中,我们将创建一个名为tile_pane的TilePane。将名为label的Label和一些按钮添加到tile_pane。使用setAlignment()函数设置tile_pane的对齐方式。现在将字体的FontWeight设置为EXTRA_BOLD。将所有FontWeight值的名称存储在String数组中。现在创建一个组合框,它将包含FontWeight值的名称,还创建一个Action事件来处理组合框事件。事件处理程序会将字体的字体粗细设置为所选的FontWeight值。现在创建一个VBox并将磁贴和组合框添加到vbox。最后,将vbox添加到场景中,并将场景添加到舞台中,并调用show()函数以显示最终结果。
    // Java program to create a TextFlow and 
    // add text object to it, set text Alignment 
    // and also set font weight of the font of text 
    // and also set a combo box to change font weight 
    // 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.*; 
    import javafx.collections.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
      
    public class FontWeight_2 extends Application { 
      
    // launch the application 
    public void start(Stage stage) 
    { 
      
        try { 
      
            // set title for the stage 
            stage.setTitle("FontWeight"); 
      
            // 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(Font.getFontNames().get(0), 
                                    FontWeight.EXTRA_BOLD, 50)); 
      
            // font weight names 
            String weight[] = {"BLACK", "BOLD",  
                               "EXTRA_BOLD",  
                               "EXTRA_LIGHT",  
                               "LIGHT",  
                               "MEDIUM",  
                               "NORMAL",  
                               "SEMI_BOLD", 
                               "THIN" }; 
      
            // Create a combo box 
            ComboBox combo_box =  
              new ComboBox(FXCollections.observableArrayList(weight)); 
      
            // Create action event 
            EventHandler<ActionEvent> event = new EventHandler<ActionEvent>() { 
      
                public void handle(ActionEvent e) 
                { 
                      
                    // set font of the text 
                    text_1.setFont(Font.font(Font.getFontNames().get(0),  
                     FontWeight.valueOf((String)combo_box.getValue()), 50)); 
                } 
            }; 
      
            // Set on action 
            combo_box.setOnAction(event); 
      
            // set text 
            text_flow.getChildren().add(text_1); 
      
            // set text Alignment 
            text_flow.setTextAlignment(TextAlignment.CENTER); 
      
            // set line spacing 
            text_flow.setLineSpacing(20.0f); 
      
            // create VBox 
            VBox vbox = new VBox(combo_box, 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/FontWeight.html



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | FontWeight Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。