Search code examples
androidpdfpdfrendererpdfviewer

Why people are not recommending display PDF using PdfRenderer?


Since last month I have been searching for best way to show pdf into android app. I was always getting help of third party library. No one has talked about Android also providing same thing via PdfRenderer. If we have native support, why should we use library?

Please correct me, Why on search to show pdf file into Android app, I am always getting link of libs?


Solution

  • The PdfRenderer class simply converts a PDF page to image. If you want to display some page thumbnails it is just fine, but if need a PDF viewer with support for document navigation and zooming then implementing it on top of the PdfRenderer becomes a very complex task.