===================================================
Редактировать
Благодаря помощи Седрик я прогрессировал.
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
, и после определенного действия таймер запустится.
Как я могу это сделать?
Спасибо.