我如何使用监听器 "currentTimeProperty" ? JavaFX

How I can use the listener "currentTimeProperty" ? JavaFX

我想给 "pathTransition.currentTimeProperty()" 添加一个监听器,当时间为 250 毫秒时显示一个 println()。

我试过这个:

pathTransition2.currentTimeProperty().addListener(new ChangeListener<Duration>() {

                @Override
                public void changed(ObservableValue<? extends Duration> observable, Duration oldValue, Duration newValue) {
                    if(newValue==Duration.millis(250))
                        System.out.println("250ms");
                }
                });

但是什么也没发生...

我做错了什么?

PD:这是 full code

首先,您的示例没有显示问题,"full code" 显示了问题。您正在 while 循环中一遍又一遍地添加一个侦听器。

除此之外,您无法检查 newValue==Duration.millis(250),因为如果您输出 newValue 变量,您会得到例如:

341.6666666666667 ms
378.5 ms
411.8333333333333 ms
441.1666666666667 ms
473.0 ms
487.1666666666667 ms
494.8333333333333 ms
505.1666666666667 ms
521.1666666666666 ms
537.1666666666666 ms

您需要检查 250 毫秒左右的增量。

这是您修改后的代码。您遇到的问题是 currentTimeProperty 先上升,到达 1000 时下降,到达 0 时上升,等等

这是您的代码的修改示例:

import static javafx.animation.Animation.INDEFINITE;
import javafx.animation.PathTransition;
import javafx.animation.PathTransitionBuilder;
import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.LineTo;
import javafx.scene.shape.MoveTo;
import javafx.scene.shape.Path;
import javafx.scene.shape.PathBuilder;
import javafx.stage.Stage;
import javafx.util.Duration;

/**
 *
 * @author Jose
 */
public class Listener extends Application {

    long prevTime = System.currentTimeMillis();

    @Override
    public void start(Stage primaryStage) {

        Circle circle = new Circle(50);

        Path path2 = PathBuilder.create().elements(new MoveTo(0, 0), new LineTo(0, 80)).build();
        path2.setFill(Color.RED);
        path2.setStroke(Color.RED);
        path2.setStrokeWidth(1);
        path2.setLayoutX(0);
        path2.setLayoutY(0);

        PathTransition pathTransition2 = PathTransitionBuilder.create().duration(javafx.util.Duration.millis(1000)).cycleCount(INDEFINITE).autoReverse(true).path(path2).node(circle).build();

        pathTransition2.currentTimeProperty().addListener(new ChangeListener<Duration>() {

            @Override
            public void changed(ObservableValue<? extends Duration> observable, Duration oldValue, Duration newValue) {

                long currTime = System.currentTimeMillis();
                if (Double.compare((currTime - prevTime), 250) > 0) {
                    System.out.println("delta: " + (currTime - prevTime) + ", old value: " + oldValue + ", new value: " + newValue);
                    prevTime = currTime;
                }

            }
        });

        pathTransition2.play();

        StackPane root = new StackPane();
        root.getChildren().addAll(path2, circle);

        Scene scene = new Scene(root, 300, 250);

        primaryStage.setScene(scene);
        primaryStage.show();

    }

    public static void main(String[] args) {
        launch(args);
    }

}

作为值,你会得到这样的东西:

delta: 251, old value: 174.33333333333334 ms, new value: 190.33333333333334 ms
delta: 256, old value: 430.3333333333333 ms, new value: 446.1666666666667 ms
delta: 256, old value: 686.3333333333334 ms, new value: 702.3333333333334 ms
delta: 256, old value: 942.3333333333334 ms, new value: 958.3333333333334 ms
delta: 256, old value: 801.6666666666666 ms, new value: 785.6666666666666 ms
delta: 256, old value: 545.6666666666666 ms, new value: 529.6666666666666 ms
delta: 256, old value: 289.6666666666667 ms, new value: 273.6666666666667 ms
delta: 256, old value: 33.666666666666664 ms, new value: 17.666666666666668 ms
delta: 256, old value: 222.33333333333334 ms, new value: 238.33333333333334 ms
delta: 272, old value: 478.3333333333333 ms, new value: 510.3333333333333 ms
delta: 256, old value: 750.3333333333334 ms, new value: 766.3333333333334 ms
delta: 256, old value: 993.6666666666666 ms, new value: 977.6666666666666 ms
delta: 256, old value: 753.5 ms, new value: 721.6666666666666 ms
delta: 256, old value: 481.6666666666667 ms, new value: 465.6666666666667 ms
delta: 256, old value: 225.66666666666666 ms, new value: 209.66666666666666 ms
delta: 256, old value: 30.5 ms, new value: 46.5 ms
delta: 256, old value: 286.5 ms, new value: 302.3333333333333 ms
delta: 256, old value: 542.5 ms, new value: 558.5 ms
delta: 256, old value: 798.5 ms, new value: 814.3333333333334 ms
delta: 256, old value: 945.5 ms, new value: 929.6666666666666 ms
delta: 256, old value: 689.6666666666666 ms, new value: 673.5 ms
delta: 256, old value: 433.5 ms, new value: 417.5 ms
delta: 256, old value: 177.5 ms, new value: 161.5 ms

您可以创建一个 BooleanBinding 并观察:

Duration quarterSecond = Duration.millis(250);
BooleanBinding afterQuarterSecond = Bindings.createBooleanBinding(() -> 
    pathTransition2.getCurrentTime().greaterThanOrEqualTo(quarterSecond), 
    pathTransition2.currentTimeProperty());
afterQuarterSecond.addListener((obs, wasAfter, isNowAfter) -> {
    if (isNowAfter) {
        System.out.println("250 ms...");
    }
});