正如标题所说,我需要通过设置CellFactory
将图像插入到TableView的列中,但是通过FileChooser获取路径的图像不会显示在表格上。但是,如果我选择第一行,它会被突出显示,就像那里有东西一样。
以下是我的控制器类中代码的片段:
@FXML
private void initialize()
{
TableColumn thumbNail = new TableColumn("Photo");
thumbNail.setCellValueFactory(new PropertyValueFactory("image"));
thumbNail.setPrefWidth(200);
thumbNail.setCellFactory(new Callback<TableColumn<Image, Photo>, TableCell>()
{
@Override
public TableCell<Image, Photo> call(TableColumn<Image, Photo> param)
{
TableCell<Image, Photo> cell = new TableCell<Image, Photo>()
{
ImageView img = new ImageView();
@Override
public void updateItem(Photo item, boolean empty)
{
if(item != null)
{
HBox box = new HBox();
box.setSpacing(10);
VBox vbox = new VBox();
vbox.getChildren().add(new Label("THIS"));
vbox.getChildren().add(new Label("DATE"));
img.setFitHeight(50);
img.setFitWidth(50);
img.setImage(new Image(new File(item.getPath()).toURI().toString()));
box.getChildren().addAll(img, vbox);
setGraphic(box);
}
}
};
return cell;
}
});
photoView.getColumns().addAll(thumbNail);
loadScreen();
}
// Load the album contents.
public void loadScreen()
{
if(imgList != null)
{
imgList.clear();
}
if(currUser != null && thisAlbum.getPhotoList() != null )
{
imgList = FXCollections.observableArrayList(thisAlbum.getPhotoList());
//FXCollections.sort(obsList);
photoView.setItems(imgList);
}
if(imgList == null)
{
photoView.setPlaceholder(new Label("No Photos In List"));
}
我不确定出了什么问题,或者为了解决这个问题需要尝试什么。任何帮助表示赞赏!
答案 0 :(得分:1)
确保图像的路径正确。否则,图像单元格将不会显示图片(并且令人惊讶的是不会抛出异常)。
PS:我发现了您的代码的略微修改版本(可能是您的一个来源): TableView Cell Modify in JavaFX