3

我想创建一个 GridPane(嵌套在 ScrollPane 中),在其中将单元格动态添加到 GridPane。每个单元格包含一个带有 BackgroundImage、一些标签和一个复选框的 VBox。问题是,GridPane 可以包含数百个 VBox,在我的情况下大约有 300 个 VBox,并且使用这么多 VBox,Gridpane 的响应时间变得非常差。例如,当我单击 CheckBox 时,需要几秒钟才能选中/取消选中 CheckBox,这使我的程序几乎无法使用。没有 BackgroundImage GridPane 的响应时间是完美的,所以我知道这里的问题是图像

这是我创建 VBox 的代码:

private VBox createAlbumVBox(Album album) {
    VBox container = new VBox();
    container.setAlignment(Pos.BOTTOM_LEFT);
    CheckBox checkBox = new CheckBox();
    Label labelAlbum = new Label(album.getName());
    Label labelArtist = new Label(album.getArtistName());
    labelAlbum.setStyle("-fx-text-fill: #272727");
    labelArtist.setStyle("-fx-text-fill: #272727");
    Background background;

    if(album.getCover() != null)
    {
        byte[] coverData = album.getCover();
        Image image = new Image(new ByteArrayInputStream(coverData));
        BackgroundSize bg = new BackgroundSize(100,100,true,true,true,false);
        BackgroundImage backgroundImage = new BackgroundImage(image,BackgroundRepeat.NO_REPEAT,BackgroundRepeat.NO_REPEAT,BackgroundPosition.CENTER,bg);
        background = new Background(backgroundImage);
    }
    else
    {
        Image image = new Image("/ressources/covers/default-cover.png");
        BackgroundSize bg = new BackgroundSize(100,100,true,true,true,false);
        BackgroundImage backgroundImage = new BackgroundImage(image,BackgroundRepeat.NO_REPEAT,BackgroundRepeat.NO_REPEAT,BackgroundPosition.CENTER,bg);
        background = new Background(backgroundImage);
    }
    checkBox.setOnMouseClicked(e -> {
        if (checkBox.isSelected()) {
            album.getTitles().forEach(t -> t.setReadyToSync(true));
        } else {
            album.getTitles().forEach(t -> t.setReadyToSync(false));
        }
    });
    container.setBackground(background);
    HBox hBox = new HBox();
    hBox.getChildren().addAll(labelAlbum, labelArtist, checkBox);
    hBox.setPrefHeight(30);
    hBox.setStyle("-fx-background-color: rgba(255, 255, 255, 0.4)");
    container.getChildren().addAll(hBox);
    return container;
}

我已经尝试使用 ImageView 而不是 BackgroundImage。不幸的是,ImageView 的性能与 BackgroundImage 一样差。

4

1 回答 1

1

这不是真正的答案,而是您可以尝试的更多建议。没有完整的mcve很难评论性能问题,这将允许在最小的应用程序中轻松地在本地重现问题。


您可以尝试的一些事情是:

  1. 为您的图像使用背景加载
  2. 在 LRU 缓存中缓存加载的图像
  3. 使用虚拟化控件,例如ControlsFX GridView

另请参阅相关答案中的一些性能优化建议(其中一些可能不适用于您的情况):


此外,您的问题可能出在您未显示的代码中。您的例程正在传递一个专辑实例,其中包括专辑数据,包括二进制形式的图像数据。如果您从数据库动态加载相册数据和图像,则该过程可能会减慢或冻结您的应用程序,具体取决于您的操作方式。

于 2016-03-30T21:28:35.713 回答