JavaFX - 使 TableView 高度适应行数
JavaFX - Adapt TableView height to number of rows
我希望我的 TableView 的高度适应填充行的数量,以便它永远不会显示任何空行。换句话说,TableView 的高度不应超过最后填充的行。我该怎么做?
如果你想让它工作,你必须设置 fixedCellSize
。
然后您可以将 TableView
的高度绑定到 table 中包含的项目的大小乘以固定的单元格大小。
演示:
@Override
public void start(Stage primaryStage) {
TableView<String> tableView = new TableView<>();
TableColumn<String, String> col1 = new TableColumn<>();
col1.setCellValueFactory(cb -> new SimpleStringProperty(cb.getValue()));
tableView.getColumns().add(col1);
IntStream.range(0, 20).mapToObj(Integer::toString).forEach(tableView.getItems()::add);
tableView.setFixedCellSize(25);
tableView.prefHeightProperty().bind(tableView.fixedCellSizeProperty().multiply(Bindings.size(tableView.getItems()).add(1.01)));
tableView.minHeightProperty().bind(tableView.prefHeightProperty());
tableView.maxHeightProperty().bind(tableView.prefHeightProperty());
BorderPane root = new BorderPane(tableView);
root.setPadding(new Insets(10));
Scene scene = new Scene(root, 400, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
注意:我将 fixedCellSize *(数据大小 + 1.01)相乘以包括 header 行。
我希望我的 TableView 的高度适应填充行的数量,以便它永远不会显示任何空行。换句话说,TableView 的高度不应超过最后填充的行。我该怎么做?
如果你想让它工作,你必须设置 fixedCellSize
。
然后您可以将 TableView
的高度绑定到 table 中包含的项目的大小乘以固定的单元格大小。
演示:
@Override
public void start(Stage primaryStage) {
TableView<String> tableView = new TableView<>();
TableColumn<String, String> col1 = new TableColumn<>();
col1.setCellValueFactory(cb -> new SimpleStringProperty(cb.getValue()));
tableView.getColumns().add(col1);
IntStream.range(0, 20).mapToObj(Integer::toString).forEach(tableView.getItems()::add);
tableView.setFixedCellSize(25);
tableView.prefHeightProperty().bind(tableView.fixedCellSizeProperty().multiply(Bindings.size(tableView.getItems()).add(1.01)));
tableView.minHeightProperty().bind(tableView.prefHeightProperty());
tableView.maxHeightProperty().bind(tableView.prefHeightProperty());
BorderPane root = new BorderPane(tableView);
root.setPadding(new Insets(10));
Scene scene = new Scene(root, 400, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
注意:我将 fixedCellSize *(数据大小 + 1.01)相乘以包括 header 行。