I have a requirement where there is a URL = "http://www.example/Open.pdf"

Now from my android application I want to open this PDF file directly in the default PDF viewer.

The moment I click on this link on the webpage, user should be presented with a default PDF viewer opened with this document.

Note: This file should not be stored on the SD card.

How do I proceed for this implementation?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

There is no way you can open a default PDF view from your application.

If your file is on the server and you want to open it without downloading then this might also pose a greater security concern. If external applications like default adobe reader can access the content on your server, then this is breaking the security framework altogether.

So, best option would be to launch a new instance of browser or webview and show the PDF document in google docs to the user.

This way user can read the document and get back to the recent state of the application as well.

link|improve this answer
feedback

You can view the pdf in the WebView using googleDocs.

WebView webView = (WebView) findViewById(R.id.my_webview);
webView.setWebViewClient(new MyWebViewClient());
webView.addView(webView.getZoomControls());
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://docs.google.com/gview?embedded=true&url=http://myurl.com/demo.pdf");
link|improve this answer
Thanks for the post Lalit. But I want it to open in Default PDF viewer like adobe and not in google docs. – EnthuDeveloper Dec 20 '11 at 12:05
feedback

refer following link it may help you

http://stackoverflow.com/questions/4665957/pdf-parsing-library-for-android
link|improve this answer
feedback

You can view the pdf in the WebView using googleDocs.

WebView webView = (WebView) findViewById(R.id.my_webview);
webView.setWebViewClient(new MyWebViewClient());
webView.addView(webView.getZoomControls());
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://docs.google.com/gview?embedded=true&url=http://myurl.com/demo.pdf");

do you have the others solution besides view pdf file using http://docs.google.com/gview?embedded=true&url=http://myurl.com/demo.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.