如何在javaFX中更改按钮的图像?

时间:2015-07-18 22:11:54

标签: java image button javafx

我正在使用javaFX。 我做了一个按钮并为此设置了一个图像。代码是:

    Image playI=new Image("file:///c:/Users/Farhad/Desktop/icons/play2.jpg");
    ImageView iv1=new ImageView(playI);
    iv1.setFitHeight(67);
    iv1.setFitWidth(69);

    Button playB=new Button("",iv1);

但我希望当我点击按钮时,图像会变为另一张图片。 我怎么能这样做?

1 个答案:

答案 0 :(得分:9)

您可以在动作中设置按钮图形

Image image = new Image(getClass().getResourceAsStream("play3.jpg"));
button.setOnAction(new EventHandler<ActionEvent>() {
    @Override public void handle(ActionEvent e) {
        Button button = (Button) e.getSource();
        button.setGraphic(new ImageView(image));
    }
});