We can do pdf for web browsing in android

we can make a pdf and show it on an android webpage. kindly help me

+2
source share
3 answers

Yes, you can upload PDF to Webview using Google gview. This is a trick.

Here you can get my solution for the same trick: Android - download PDF / PDF Viewer .

+5
source

You cannot open the PDF file directly in the Android web browser, but using the Google Docs Viewer. you can open it in an android browser, for example:

String webUrl="http://myweb.com/demo.pdf";
mWebView.loadUrl("https://docs.google.com/gview?embedded=true&url="+ webUrl);
+1
source

Unfortunately, Google changed the api ... When you try to download the docs.google.com/gview URL, the webview is redirected to the new drive.google.com/viewerng file which cannot display pdf in Android WebView ...

Any other smart solution ?: D

0
source

All Articles