我想使用数组列表在 javafx 中填充表格视图。我不想使用任何模型。我想将数组列表作为填充表格视图的数据源。
Code:
List<Double> doubles = new ArrayList<Double>();
doubles.add(12.12d);
ObservableList<Double> names = FXCollections.observableArrayList(doubles);
TableView table_view = new TableView<>(names);
firstDataColumn.setCellFactory(?????);/// here the problem comes what is the cell factory in case of arraylist