How To Download A Pdf From An Android Webview?
I have an application that launches a webivew. When I click on the PDF links in the webview, download of that PDF should start. I am able to do this with the following code. view.g
Solution 1:
You can do one thing. The moment the PDF download starts, then see to it that your webview activity is prevented from onDestroy() or finish().
Then u can start the download in background and also retain the Webview activity.
Post a Comment for "How To Download A Pdf From An Android Webview?"