I am developing an android songbook app and need help displaying a pdf.
I have an SVG PDF file that I want to display. Everything I've found for rendering a pdf does it by converting to bitmap. Even pdfrenderer which was released in API 21.
My app will have zooming capabilities, and I don't want to convert to bitmap, because zooming in will result in loss of quality.
See the example below.
How can I display my pdf without converting to a bitmap? I do not want to use a third party viewer either.
Thank you