2

这是我的代码。这会提示异常说“IllegalArgumentException:儿童:添加了重复的儿童:父 = 网格 hgap = 5.0,vgap = 5.0,对齐 = TOP_LEFT”

文件 file = new File("D:\SERVER\Server Content\Apps\icons");

            File[] filelist1 = file.listFiles();
            ArrayList<File> filelist2 = new ArrayList<>();
            hb = new HBox();

            for (File file1 : filelist1) {
                filelist2.add(file1);

            }

            System.out.println(filelist2.size());

                for (int i = 0; i < filelist2.size(); i++) {
                    System.out.println(filelist2.get(i).getName());
                    image = new Image(filelist2.get(i).toURI().toString());

                    pic = new ImageView();
                    pic.setFitWidth(130);
                    pic.setFitHeight(130);

                    gridpane.setPadding(new Insets(5));
                    gridpane.setHgap(5);
                    gridpane.setVgap(5);
                    pic.setImage(image);
                    hb.getChildren().add(pic);  

                }
4

1 回答 1

1

将项目添加到GridPanea 有点不同。

从文档

要使用 GridPane,应用程序需要设置子级的布局约束并将这些子级添加到网格窗格实例。使用 GridPane 类上的静态设置器方法在子级上设置约束

应用程序还可以使用结合设置约束和添加子项的步骤的便捷方法

所以在你的例子中,你首先需要决定:一行需要多少张图片?

假设您的答案是4,那么您的代码变为:(有不同的方法,我正在写最简单的方法。您可以使用任何东西,行和列的循环是一个很好的选择;))

//Can be set once, no need to keep them inside loop
gridpane.setPadding(new Insets(5));
gridpane.setHgap(5);
gridpane.setVgap(5);

//Declaring variables for Row Count and Column Count
int imageCol = 0;
int imageRow = 0;
for (int i = 0; i < filelist2.size(); i++) {
     System.out.println(filelist2.get(i).getName());
     image = new Image(filelist2.get(i).toURI().toString());

     pic = new ImageView();
     pic.setFitWidth(130);
     pic.setFitHeight(130);

     pic.setImage(image);
     hb.add(pic, imageCol, imageRow );
     imageCol++;

     // To check if all the 4 images of a row are completed
     if(imageCol > 3){
          // Reset Column
          imageCol=0;
          // Next Row
          imageRow++;
     }
}
于 2014-08-18T07:13:42.857 回答