一行代碼快速實現(xiàn)PDF的在線下載與本地預(yù)覽
?
?
使用到的技術(shù)
1,Okhttp下載文件
2,pdfview顯示PDF
下面是效果圖
?
?
代碼很簡單,可以到下載demo查看,下面只貼出重要代碼
1,下載pdf
OkHttpUtils.get(pdfUrl)// .tag(this)// .execute(new DownloadFileCallBack(Environment.getExternalStorageDirectory() + "/temp", "qcl.pdf"));//保存到sd卡
2,顯示pdf
pdfView.fromFile(file) // .pages(0, 0, 0, 0, 0, 0) // 默認(rèn)全部顯示,pages屬性可以過濾性顯示 .defaultPage(1)//默認(rèn)展示第一頁 .onPageChange(this)//監(jiān)聽頁面切換 .load();
3,簡單的顯示下布局
?
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <com.joanzapata.pdfview.PDFView android:id="@+id/pdfView" android:layout_width="match_parent" android:layout_height="match_parent" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="5dp" android:text="1/10"/> </FrameLayout>
?
?
本文摘自 :https://blog.51cto.com/u