我想创建一些像这样的加载点:
At 0 second the text on the screen is: Loading.
At 1 second the text on the screen is: Loading..
At 2 second the text on the screen is: Loading...
At 3 second the text on the screen is: Loading.
At 4 second the text on the screen is: Loading..
At 5 second the text on the screen is: Loading...
依此类推,直到我关闭Stage
.
在 JavaFX 中最好/最简单的方法是什么?我一直在研究 JavaFX 中的动画/预加载器,但是在尝试实现这一点时这似乎很复杂。
我一直在尝试在这三个之间创建一个循环Text
:
Text dot = new Text("Loading.");
Text dotdot = new Text("Loading..");
Text dotdotdot = new Text("Loading...");
但屏幕保持静止...
我怎样才能使它在 JavaFX 中正常工作?谢谢。