android PDF查看

廉元龙
2023-12-01
compile 'com.github.barteksc:android-pdf-viewer:2.7.0-beta.1'
 <com.github.barteksc.pdfviewer.PDFView
        android:id="@+id/pdf_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
  pdf_view.fromFile(pdfFile)
                    .enableSwipe(true)
                    //pdf文档翻页是否是垂直翻页,默认是左右滑动翻页
                    .swipeHorizontal(false)
                    .load();
 类似资料: