Создание таймера, который показывает время в формате чч: мм: сс JavaFX - PullRequest
0 голосов
/ 08 июня 2018

===================================================

Редактировать

Благодаря помощи Седрик я прогрессировал.

public class Main extends Application {

    @Override // Override the start method in the Application class
    public void start(Stage primaryStage) {
        FakeCustomNode clockNode = new FakeCustomNode(180);
        Scene scene = new Scene(clockNode, 300, 300);
        primaryStage.setTitle("Timer"); // Set the stage title
        primaryStage.setScene(scene); // Place the scene in the stage
        primaryStage.show(); // Display the stage
        primaryStage.setResizable(false);
    }

    /**
     * The main method is only needed for the IDE with limited JavaFX support. Not
     * needed for running from the command line.
     */
    public static void main(String[] args) {
        launch(args);
    }
}

=======================================================================

final public class FakeCustomNode extends VBox {

    TimerGUI stopWatchGUI;

    public FakeCustomNode(int minutes) {
        stopWatchGUI = new TimerGUI(minutes);
        getChildren().addAll(stopWatchGUI.getStopWatch());
    }
}

==========================================================================

public class TimerGUI {
    Text display;
    Button start;
    Button pause;
    Button reset;
    VBox vbox = new VBox();

    int second;

public class TimerGUI {
    Text display;
    VBox vbox = new VBox();
    int second;

    public TimerGUI(int time) {
        this.second = time * 60;
        display = new Text(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));

        Timeline stopWatchTimeline = new Timeline(new KeyFrame(Duration.seconds(1), (ActionEvent event) -> {
            if (second-- > 0)
                display.setText(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));
        }));
        stopWatchTimeline.setCycleCount(Timeline.INDEFINITE);
        stopWatchTimeline.play();

        vbox.getChildren().addAll(display);
    }

    public VBox getStopWatch() {
        return vbox;
    }
}

Я не понимаю, как изменить код, чтобы таймер запускался при определенных действиях.В тот момент, когда я его запустил, таймер запускается.

Я хочу показать 03:00:00, и после определенного действия таймер запустится.

Как я могу это сделать?

Спасибо.

1 Ответ

0 голосов
/ 09 июня 2018

Когда вы говорите "конкретное действие" , я предполагаю, что вы имеете в виду что-то вроде нажатия кнопки.В связанном коде TimerGUI имеет три кнопки, связанные с ним. Старт , Пауза и Сброс .Используйте их для решения различных ситуаций.Код ниже демонстрирует эти кнопки.

Класс TimerGUI

import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.event.ActionEvent;
import javafx.scene.control.Button;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import javafx.util.Duration;

public class TimerGUI {
    Text display;
    Button start;
    Button pause;
    Button reset;
    VBox vbox = new VBox();

    int second;

    public TimerGUI(int time) {
        this.second = time * 60;
        display = new Text(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));
        // display = new Text();
        start = new Button("Start");        
        pause = new Button("Pause");
        reset = new Button("Stop");

        Timeline stopWatchTimeline = new Timeline(new KeyFrame(Duration.seconds(1), (ActionEvent event) -> {
            second--;
            display.setText(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));
        }));
        stopWatchTimeline.setCycleCount(Timeline.INDEFINITE);

        start.setOnAction((event) -> {
            stopWatchTimeline.play();
        });
        pause.setOnAction((event) -> {
            stopWatchTimeline.pause();
        });
        reset.setOnAction((event) -> {
            stopWatchTimeline.stop();
            this.second = time * 60;
            display.setText(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));
        });

        vbox.getChildren().addAll(display, new HBox(start, pause, reset));
    }

    public VBox getStopWatch() {
        return vbox;
    }


    public void setTimer(int time)
    {
        display = new Text(String.format("%02d:%02d:%02d", second / 3600, (second % 3600) / 60, second % 60));
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...