创建图像分页

ArrayList<String> images = new ArrayList<>();
images.add("some\\cool\\image");
images.add("some\\other\\cool\\image");
images.add("some\\cooler\\image");

Pagination p = new Pagination(3);
p.setPageFactory(n -> new ImageView(images.get(n)));

请注意,路径必须是 URL,而不是文件系统路径。

这个怎么运作

p.setPageFactory(n -> new ImageView(images.get(n)));

其他一切都只是松软,这是真正的工作正在发生的地方。setPageFactory 接受一个带有 int 的回调,并返回我们想要在该索引处的节点。第一页映射到列表中的第一项,第二页映射到列表中的第二项,依此类推。