Home / Use cases / Page-Curl Android / Lookbooks

// Library × use-case · Lookbooks

Page-Curl Android for Lookbooks

A working recipe for building a lookbook flipbook with Page-Curl Android, setup, the use-case-specific patterns that matter, and the alternatives worth checking.

★ 1,667 Apache-2.0 Java Use case: Lookbooks

Why Page-Curl Android fits a lookbook build

Fashion lookbooks live or die on colour fidelity and seasonal navigation. The audience is buyers and editors who care that the magenta on page eight matches the actual garment in the showroom, not an approximation. Page-Curl Android is the engine; your image pipeline is the differentiator.

Page-Curl Android sits at 1,667 GitHub stars, ships under the Apache-2.0 license, and is written primarily in Java. Android API 8+ with GLES 2.0. If your lookbook audience falls inside that support window, you can move on to implementation; if it does not, jump down to the alternatives section before writing any code. our editorial picks for Lookbooks are updated on every re-seed.

The right setup for a lookbook

Install Page-Curl Android with the same command as a generic build, the use-case differentiation lives in the surrounding markup, the loading strategy, and the analytics, not in the install:

Clone repo, import as library project.

The minimum-viable initialisation is intentionally close to the library’s minimum working example so you can see a page-turn working before customising:

CurlView curlView = (CurlView) findViewById(R.id.curl);
curlView.setPageProvider(new PageProvider());
curlView.setSizeChangedObserver(new SizeChangedObserver());

What matters specifically for a lookbook

Treat the image pipeline as a first-class concern. Export every lookbook image at sRGB or Display P3 with embedded colour profiles, and serve the highest-resolution variant the viewer’s connection can handle. The flipbook viewer is responsible for the page-turn; it is not responsible for guessing your colour space.

Add a ‘collection’ section navigation to the chrome: buyers want to jump from looks 1-15 (resort) to looks 16-30 (pre-fall) in one click. Build a second, smaller index page that lives outside the flipbook and links into specific spreads; that page is what your wholesale partners will bookmark.

The mistake to avoid

Compressed JPEGs ruin lookbooks. Ship at the highest defensible resolution, even if the file size jumps; your readers are evaluating fabric and colour, not browsing news. further reading on this pattern covers the recovery playbook in detail.

Alternative libraries for a lookbook

If Page-Curl Android turns out to be the wrong fit, the libraries below are the next-best open-source picks for the same use case, sorted by GitHub star count. Each one has a deep-dive page with feature matrix, browser support, and code samples.

What to read next