序: 所以我有这个,它的应用程序并不是那么重要,它是一个tcp监听器,整天用一些硬件来讨论它。但它也有一些显示器正在进行中。显示屏在屏幕的不同区域显示不同的自定义节点,屏幕底部是一个网格,显示一些" stuff"但是当没有任何"东西"它在屏幕上滚动一些文字。
问题: 正如我将在构建时间轴的方法中发布的那样,有一个Text元素在屏幕上从右向左过渡。这是第一个小时或两个小时的预期工作,但过了一段时间后,它变得越来越紧张。 TCP侦听器仍然是活泼的,它产生的线程在进出控制器和更改UI时没有任何问题,但滚动文本在55"中一次跳跃2英寸。它正在显示的屏幕。我真的需要一种让文本顺畅滚动的方法,就像我第一次无限期启动应用程序时一样。
private void buildChyron() throws IllegalArgumentException {
setMessages();
LowerGrid.getChildren().clear();
StringBuilder txtstr = new StringBuilder();
for (String s : messages) {
txtstr.append(s).append(" ");
}
txtstr = new StringBuilder(txtstr.toString().trim());
Text msg = new Text(txtstr.toString());
LowerGrid.add(msg, 0, 0);
msg.setTextOrigin(VPos.TOP);
msg.setFont(Font.font("Veranda", FontWeight.BOLD, 150));
double sceneWidth = MainGrid.getWidth();
double msgWidth = msg.getLayoutBounds().getWidth();
KeyValue initKeyValue = new KeyValue(msg.translateXProperty(), sceneWidth);
KeyFrame initFrame = new KeyFrame(Duration.ZERO, initKeyValue);
KeyValue endKeyValue = new KeyValue(msg.translateXProperty(), -1.0 * msgWidth);
KeyFrame endFrame = new KeyFrame(Duration.seconds((msgWidth + sceneWidth) / messageRate), endKeyValue);
if ((timeline != null) && (timeline.getStatus().equals(Timeline.Status.PAUSED))) {
timeline.playFromStart();
} else {
timeline = new Timeline(initFrame, endFrame);
timeline.setCycleCount(Timeline.INDEFINITE);
if (msgIndex == messages.size() - 1) msgIndex = 0;
else msgIndex++;
timeline.playFromStart();
}
}
这就是我打电话给你的地方,你可以看到我一直在尝试用它来思考这可能是硬件资源问题,但我还没有能够控制它。我现在正在测试它,它在我所在的设施中处于一个超级明显的位置。超级尴尬
private void updateStack() {
int count = 0;
System.out.println(andonStack);
andonStack.sortStack();
LowerGrid.getChildren().clear();
if (pokeyStack.size() > 0) {
AndonPane pane = new AndonPane(pokeyStack.get(0).getPokayo());
LowerGrid.add(pane, 0, 0, 9, 1);
} else {
int i;
for (i = 0; i < andonStack.size(); i++) {
if (i >= 9) break;
panes[i] = new AndonPane(((AndonSignalStack.AndonSignal) andonStack.get(i)).getType(),
((AndonSignalStack.AndonSignal) andonStack.get(i)).getStation(), this);
count++;
}
for (; i < 9; i++) {
panes[i] = new Pane();
panes[i].setStyle("-fx-background-color: rgba(0,0,0, 0)");
panes[i].setPrefWidth(MainGrid.getWidth() * (9 - i) / 9);
}
for (i = 0; i < count; i++) {
LowerGrid.add(panes[i], i, 0);
}
if (i == 0) {
Platform.runLater(this::buildChyron);
}else{
if (timeline != null) {
System.gc();
timeline.stop();
timeline = null;
}
}
}
}
答案 0 :(得分:0)
答案是它正在设置的窗格中的清晰方法。需要停止和删除动画
不要使用pane.clear();当动画使用LowerGrid.getChildren()。removeAll();
时