---
title: "Inconsistent labels"
canonical_url: "https://www.nutrient.io/guides/android/rendering-issues/inconsistent-labels/"
md_url: "https://www.nutrient.io/guides/android/rendering-issues/inconsistent-labels.md"
last_updated: "2026-05-15T19:10:04.920Z"
description: "Solutions for common issues and errors in Nutrient Android SDK with debugging tips and workarounds."
---

The PDF spec supports a feature called [page labels](http://www.w3.org/TR/WCAG20-TECHS/PDF17). This feature allows you to customize the page label displayed, which might be different than the logical (one-based) page label. Nutrient will properly parse this additional information and display the custom page label next to the logical page label, if found.

Custom page labels can be roman letters, strings, or simply numbers with a different offset. Sometimes the initial pages start with roman letters, and the page numbers then start later to match the page numbering in the document.

This perfectly matches Adobe Acrobat’s behavior.

Disable this feature by calling [`pageLabelsEnabled(false)`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration.activity/-pdf-activity-configuration/-builder/index.html#-334789426%2FFunctions%2F-1917335081) on your [`PdfActivityConfiguration`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration.activity/-pdf-activity-configuration/-builder/index.html).

Access these custom labels via [`PdfDocument#getPageLabel`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.document/-pdf-document/get-page-label.html).
---

## Related pages

- [Outdated Render Cache](/guides/android/rendering-issues/outdated-render-cache.md)
- [Changing The Font Size Or Color Of Page Text](/guides/android/customizing-pdf-pages/changing-the-font-size-or-color-of-page-text.md)
- [Efficient PDF rendering solutions for Android](/guides/android/troubleshooting/complexities-of-rendering-pdfs.md)
- [How to ensure your PDF fonts are embedded correctly](/guides/android/rendering-issues/inconsistent-fonts.md)
- [Understanding XFA vs AcroForms in PDFs](/guides/android/rendering-issues/pspdfkit-doesnt-show-the-pdf-form.md)

