建立影象分頁

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 的回撥,並返回我們想要在該索引處的節點。第一頁對映到列表中的第一項,第二頁對映到列表中的第二項,依此類推。