在我的TableView
中,其中一个TableColumn
值为ObservableList
。为简化起见,它只包含StringProperty
个值。在我的列的单元格值工厂中,我使用Bindings
类将值连接在一起。
我想要的结果应该是StringExpression
,只要ObservableList
更改,就会更新。
我遇到的问题是,当列表的任何值发生更改时,生成的StringExpression
会正确更新,但是当我向列表中添加或删除值时,它将不会更新。
我的第一个想法是在行中添加ListChangeListener
,但这似乎不切实际,因为表中可能有数十行或数百行。
import java.util.ArrayList;
import java.util.List;
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableColumn.CellDataFeatures;
import javafx.scene.control.TableView;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import javafx.util.Callback;
public class TestFx extends Application {
@Override
public void start(Stage primaryStage) {
//Note, I never really see this "row" value directly, they're loaded
//in from a database, and there can be dozens or hundreds of
//rows for the table, so I don't if adding a listener to each one
//is the best idea.
final ObservableList<StringProperty> row = FXCollections.observableArrayList();
row.add(new SimpleStringProperty("test"));
row.add(new SimpleStringProperty("one"));
row.add(new SimpleStringProperty("two"));
TableView<ObservableList<StringProperty>> table = new TableView();
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
TableColumn<ObservableList<StringProperty>, String> concatColumns = new TableColumn<>("Concatentated Values");
concatColumns.setCellValueFactory(new Callback<CellDataFeatures<ObservableList<StringProperty>, String>, ObservableValue<String>>() {
@Override
public ObservableValue<String> call(CellDataFeatures<ObservableList<StringProperty>, String> p) {
ObservableList<StringProperty> row = p.getValue();
List toConcat = new ArrayList();
for (int i = 0; i < row.size(); i++) {
toConcat.add(row.get(i));
if (i+1 < row.size()) {
toConcat.add(", ");
}
}
return Bindings.concat(toConcat.toArray());
}
});
table.getColumns().add(concatColumns);
table.getItems().add(row);
BorderPane root = new BorderPane();
HBox buttons = new HBox();
Button add = new Button();
add.setText("Add Item");
add.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
row.add(new SimpleStringProperty("added"));
}
});
Button remove = new Button();
remove.setText("Remove Item");
remove.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
if (row.size() > 0) {
row.remove(0);
}
}
});
Button change = new Button();
change.setText("Change Item");
change.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
if (row.size() > 0) {
row.get(0).set("Changed");
}
}
});
buttons.getChildren().addAll(add, remove, change);
root.setCenter(table);
root.setBottom(buttons);
Scene scene = new Scene(root, 300, 250);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
我知道“为什么”它不起作用。 StringExpression
链接到列表的StringProperty
值,而不是列表本身。因此,每当我添加/删除值时,它都不会更新。
但是,当我删除值(删除第一个索引)时,这会导致StringExpression
重新评估自己(我猜?),在这种情况下会出现新添加/删除的值。 (按删除,然后按更改)
简单地添加值不会有效。 (按添加然后更改)
那么,在单元格值工厂回调中,我是如何处理我的代码来监听ObservableList
并返回一个ObservableValue
,它可以连接列表并在发生更改时显示,包括添加/删除?
答案 0 :(得分:2)
好吧,我想出来了,但我想知道我的解决方案是否切实可行。
我对JavaFX绑定和属性还不熟悉,不知道这个解决方案是否正常,或者是否会导致问题。
concatColumns.setCellValueFactory(new Callback<CellDataFeatures<ObservableList, String>, ObservableValue<String>>() {
@Override
public ObservableValue<String> call(CellDataFeatures<ObservableList, String> p) {
final ObservableList row = p.getValue();
List<Observable> dependencies = new ArrayList<>();
for (Object value : row) {
if (value instanceof Observable) {
dependencies.add((Observable)value);
}
}
dependencies.add(row);
StringExpression se = Bindings.createStringBinding(new Callable<String>() {
@Override
public String call() throws Exception {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < row.size(); i++) {
//Check for Property objects and append the value
if (row.get(i) instanceof Property) {
sb.append(((Property)row.get(i)).getValue());
}
else {
sb.append(row.get(i));
}
if (i+1 < row.size()) {
sb.append(", ");
}
}
return sb.toString();
}
}, dependencies.toArray(new Observable[dependencies.size()]));
return se;
}
});
TL; DR版本:
我使用StringExpression
创建了自己的Bindings.createStringBinding()
,并添加了ObservableList
及其作为Observable
个对象的任何值作为{{1}的依赖项}}
我相信这样做的是,只要其中一个列表的值发生变化,就会通知StringExpression
更新。此外,当列表本身更改(添加/删除)时,会通知StringExpression
更新。
如果我对上述陈述不对,请告诉我!