-1

MacOS X has PDFKit which in turn has PDFView. What other operating systems support viewing PDF files natively?

Ecir Hana
  • 10,864
  • 13
  • 67
  • 117
  • 3
    I don't see how (dis)playing a specific media format is key functionality of an OS such that it needs to be supported natively by the OS core and not by a separate application or library. – Alexey Frunze Jul 30 '12 at 14:42

1 Answers1

0

Android does not have a built-in PDF presenter. However, I found a workaround. Have a look at this thread. I extended the PdfViewerActivity in order to present a PDF file. It works pretty nice.

Snippet:

Intent intent = new Intent(CurrentActivity.this, ExtendedPdfViewerActivity.class);
intent.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, pathToPdfDocument);
startActivity(intent);
Community
  • 1
  • 1
overbet13
  • 1,654
  • 1
  • 20
  • 36