How to create PDF from webview in android?

前端 未结 2 1419
春和景丽
春和景丽 2020-12-07 23:21

I am displaying webpage in webview. Now how to create PDF from webview ?

For Example : webview loads URL is \"www.g

2条回答
  •  既然无缘
    2020-12-08 00:19

    As of API 19 (KitKat), Android now lets you print a webview directly. Moreover, the same PrintManager API can be used to generate a PDF from a WebView without any external libraries.

    As the example code shows, just get the PrintManager, create a PrintDocumentAdapter from the WebView in question, then create a new PrintJob and your user should see the option to save it to a file as PDF or print to a cloud printer. On newer Androids than 4.4 they'll also get a visual preview of what will be printed/PDF'd.

提交回复
热议问题