在我的JavaFX
TableView
我有一个TableColumn
,我已将Cell Factory设置为ProgressBar
,而其他TableColumn
我设置了Cell工厂显示ToolTip
。如下图所示。第二列显示进度条,其他3列呈现以显示工具提示,其中包含要显示的简单字符串值。
我遇到的问题是TableView
没有显示/显示表中的更新值,即UI未验证/刷新/绘制TableView
元素。如果我点击ColumnHeader
对任何列进行排序,那么我只能看到TableView
更新。手动排序表列以刷新表内容没有意义所以我搜索并找到解决方案来显示/隐藏表列以更新表视图。
要解决此问题,我在下面编写了一个代码来解决TableView
更新/刷新问题,但由于此代码ToolTip
现在无法显示。
每个特定时间间隔后更新表格视图的代码
class TableProgressBarUpdator implements Runnable {
TableView table;
public TableProgressBarUpdator(TableView fxtable) {
table = fxtable;
}
public void start() {
new Thread(this).start();
}
public void run() {
while (keepUpdating) {
try {
updateProgressbar();
Thread.sleep(1000);
} catch (Exception e) {
LogHandler.doErrorLogging("Error while updating tables cell", e);
}
}
LogHandler.doDebugLogging("Table process repainting is completed.");
}
private void updateProgressbar() throws Exception {
Platform.runLater(new Runnable() {
@Override
public void run() {
((TableColumn) table.getColumns().get(0)).setVisible(false);
((TableColumn) table.getColumns().get(0)).setVisible(true);
}
});
}
}
开始更新表格视图
public void startUpdatingTableProgress() {
keepUpdating = true;
TableProgressBarUpdator tpu = new TableProgressBarUpdator(table);
tpu.start();
}
停止更新表格视图
public void stopUpdatingTableProgress() {
keepUpdating = false;
}
添加更多显示渲染类的代码以显示进度条并显示工具提示。
显示进度条表视图的代码。
public static class ProgressBarTableCell<S, T> extends TableCell<S, T> {
private final ProgressBar progressBar;
private ObservableValue<T> ov;
public ProgressBarTableCell() {
this.progressBar = new ProgressBar();
progressBar.setPrefHeight(23);
setAlignment(Pos.CENTER);
}
@Override
public void updateItem(T item, boolean empty) {
super.updateItem(item, empty);
if (item == null) {
setGraphic(null);
setText(null);
} else {
if (item.toString().equalsIgnoreCase("Processing")) {
Platform.runLater(new Runnable() {
@Override
public void run() {
if (getGraphic() == null) {
setGraphic(progressBar);
progressBar.setProgress(-1);
} else {
ProgressBar objpProgressBar = (ProgressBar) getGraphic();
objpProgressBar.setProgress(-1);
}
setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
}
});
} else {
Platform.runLater(new Runnable() {
@Override
public void run() {
if (getGraphic() == null) {
setGraphic(progressBar);
progressBar.setProgress(0);
} else {
ProgressBar objpProgressBar = (ProgressBar) getGraphic();
objpProgressBar.setProgress(0);
}
setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
}
});
}
}
}
}
显示工具提示的代码
public class ToolTip extends TableCell {
@Override
protected void updateItem(Object object, boolean selected) {
if (object == null) {
setGraphic(null);
setText(null);
}else{
setText(object.toString());
setTooltip(new Tooltip(object.toString()));
}
}
}
问题 -
如果我从TableProgressBarUpdator类中注释掉这两行,那么我可以看到第1,第3和第4列中每个单元格值的工具提示,但现在表格视图内容没有更新/刷新,当我联合国时 - 注释这些行我无法看到工具提示。
((TableColumn) table.getColumns().get(0)).setVisible(false);
((TableColumn) table.getColumns().get(0)).setVisible(true);
总之,由于这两行,我的工具提示渲染不起作用,如果我删除这两行,那么表视图内容不是刷新/更新。
答案 0 :(得分:3)
您无需手动更新TableView
。您的班级可能存在与该TableView's column
相关联的问题。
您必须按以下方式创建课程:
public static class Test{
private StringProperty name;
private Test() {
name = new SimpleStringProperty();
}
public Test(String name) {
this.name = new SimpleStringProperty(name);
}
public void setName(String name) {
this.name.set(name);
}
public String getName() {
return name.get();
}
public StringProperty nameProperty() {
return name;
}
}
答案 1 :(得分:1)
您确定需要在ProgressBarTableCell中调用Platform.runLater()吗?我希望它已经在Application线程中。在计划的表更新之后,这可能导致进度条更新放在Application线程的队列末尾。
您的TableCell的值是否包含在ObservableProperty中(看起来您应该有一个SimpleStringProperty)?如果你这样做了,那么表应该认识到它需要刷新,你不应该试图将列可见性切换为强制表刷新的黑客。