With PdfViewPager you can easily download and display PDF files. All the code you need:
PdfViewPager pdfViewPager = new PDFViewPager(this, "sample.pdf"); setContentView(pdfViewPager);
Or you can paste it into your layout as follows:
<es.voghdev.pdfviewpager.library.PDFViewPager android:id="@+id/pdfViewPager" android:layout_width="match_parent" android:layout_height="match_parent" app:assetFileName="sample.pdf"/>
Take a look at lib if you want to know more.
source share