Android webview轉PDF的方法示例
1.網(wǎng)上找了好多沒有顯示出來效果不錯,后來看到調(diào)用手機打印預覽,看了效果還不錯,就打算使用系統(tǒng)打印服務預覽下載
2.‘webView.createPrintDocumentAdapter()'得到打印的PrintDocumentAdapter有了該類就可以使用onWrite方法寫入制定的文件,但是這個方法需要傳入回調(diào)這個悲劇的是這個回調(diào)方法是hiden的我們沒辦法調(diào)用
3,字怎么解決呢,有連個方法
3.1 使用此開源庫替換自己的sdk 中的android.jar文件,就可以使用了
https://github.com/anggrayudi/android-hidden-api
3.2 使用dexmaker生成動態(tài)代理代理PrintDocumentAdapter.WriteResultCallback和PrintDocumentAdapter.LayoutResultCallback方法依賴地址
compile 'org.droidparts.dexmaker:dexmaker-mockito:1.5'
4.完整代碼如下:
File file = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM + "/PDFTest.pdf"); File dexCacheFile; // 獲取需要打印的webview適配器 PrintDocumentAdapter printAdapter; PageRange[] ranges; ParcelFileDescriptor descriptor; /** a* @param webView */ private void printPDFFile(WebView webView) { if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) { /** * android 5.0之后,出于對動態(tài)注入字節(jié)碼安全性德考慮,已經(jīng)不允許隨意指定字節(jié)碼的保存路徑了,需要放在應用自己的包名文件夾下。 */ //新的創(chuàng)建DexMaker緩存目錄的方式,直接通過context獲取路徑 dexCacheFile = getDir("dex", 0); if (!dexCacheFile.exists()) { dexCacheFile.mkdir(); } try { //創(chuàng)建待寫入的PDF文件,pdfFilePath為自行指定的PDF文件路徑 if (file.exists()) { file.delete(); } file.createNewFile(); descriptor = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_WRITE); // 設置打印參數(shù) PrintAttributes attributes = new PrintAttributes.Builder() .setMediaSize(PrintAttributes.MediaSize.ISO_A4) .setResolution(new PrintAttributes.Resolution("id", Context.PRINT_SERVICE, 300, 300)) .setColorMode(PrintAttributes.COLOR_MODE_COLOR) .setMinMargins(PrintAttributes.Margins.NO_MARGINS) .build(); //打印所有界面 ranges = new PageRange[]{PageRange.ALL_PAGES}; printAdapter = webView.createPrintDocumentAdapter(); // 開始打印 printAdapter.onStart(); printAdapter.onLayout(attributes, attributes, new CancellationSignal(), getLayoutResultCallback(new InvocationHandler() { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if (method.getName().equals("onLayoutFinished")) { // 監(jiān)聽到內(nèi)部調(diào)用了onLayoutFinished()方法,即打印成功 onLayoutSuccess(); } else { // 監(jiān)聽到打印失敗或者取消了打印 } return null; } }, dexCacheFile.getAbsoluteFile()), new Bundle()); } catch (IOException e) { e.printStackTrace(); } } } /** * @throws IOException */ private void onLayoutSuccess() throws IOException { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { PrintDocumentAdapter.WriteResultCallback callback = getWriteResultCallback(new InvocationHandler() { @Override public Object invoke(Object o, Method method, Object[] objects) throws Throwable { if (method.getName().equals("onWriteFinished")) { Toast.makeText(MainActivity.this,"Success",Toast.LENGTH_SHORT).show(); // PDF文件寫入本地完成,導出成功 Log.e("onLayoutSuccess","onLayoutSuccess"); } else { Toast.makeText(MainActivity.this,"導出失敗",Toast.LENGTH_SHORT).show(); } return null; } }, dexCacheFile.getAbsoluteFile()); //寫入文件到本地 printAdapter.onWrite(ranges, descriptor, new CancellationSignal(), callback); }else { Toast.makeText(MainActivity.this,"不支持4.4.以下",Toast.LENGTH_SHORT).show(); } } @SuppressLint("NewApi") public static PrintDocumentAdapter.LayoutResultCallback getLayoutResultCallback(InvocationHandler invocationHandler, File dexCacheDir) throws IOException { return ProxyBuilder.forClass(PrintDocumentAdapter.LayoutResultCallback.class) .dexCache(dexCacheDir) .handler(invocationHandler) .build(); } @SuppressLint("NewApi") public static PrintDocumentAdapter.WriteResultCallback getWriteResultCallback(InvocationHandler invocationHandler, File dexCacheDir) throws IOException { return ProxyBuilder.forClass(PrintDocumentAdapter.WriteResultCallback.class) .dexCache(dexCacheDir) .handler(invocationHandler) .build(); }
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Android使用OkHttp進行網(wǎng)絡同步異步操作
這篇文章主要為大家詳細介紹了Android使用OkHttp進行網(wǎng)絡同步異步操作,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-07-07利用adt-bundle輕松搭建Android開發(fā)環(huán)境與Hello world(Linux)
這篇文章主要介紹了利用adt-bundle在Linux下輕松搭建Android開發(fā)環(huán)境與Hello world,感興趣的小伙伴們可以參考一下2016-07-07如果你在Android Studio碰到gradle的各種問題就來看這篇文章吧(強烈建議收藏)
這篇文章主要介紹了你可能會在Android Studio碰到gradle的各種問題,完美解決關于gradle的全部問題,切記收藏以防需要的時候找不到了哦2021-08-08Android?studio實現(xiàn)簡單計算器的編寫
這篇文章主要為大家詳細介紹了Android?studio實現(xiàn)簡單計算器的編寫,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-05-05