we desperately want to develop a pdf reader.we searched for api ,but got java apis which are written using applets and swings.how can we run that on android.Or can anybody suggest any pdf reader api for android.we are stuck in this and cant go forward to complete our app.if anyone has the source code for that please share .any kind of help is highly appreciated.
Asked
Active
Viewed 1.4k times
7
-
1Hey read this discussion : http://stackoverflow.com/questions/2947517/android-pdf-reader-from-scratch – Kartik Domadiya Apr 11 '11 at 06:17
6 Answers
3
-
Too bad that in the first link, the issue of a missing class has not been solved yet (PdfImageReader.java), making this API difficult to adapt. – darksider Aug 27 '13 at 08:15
-
-
1@ZuseeWeekin not really but these were the only good API's during that time. – Harshad Mar 20 '14 at 10:07
2
Because develop an PDF reader for Android is not really simple, so I suggest you read this PDF file online by Google Docs Reader
WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
webview.loadUrl("http://docs.google.com/gview?embedded=true&url=" + pdf);

anticafe
- 6,816
- 9
- 43
- 74
0
You missed Solo PDF reader, the best one in market. https://play.google.com/store/apps/details?id=com.lrmobilabs.pdfreader&hl=en As we can see 5000+ downloads in 2 weeks. Best PDF Reader for your android device, and Its Free. Contact the developer.

niksmac
- 2,667
- 3
- 34
- 50
0
It's Open Source, dual-licensed: your choice -- either pick GPL v3 or a commercial license. (If you are familiar with SumatraPDF, the lightweight PDF- and XPS- viewer for Windows: internally that one is driven by MuPDF...)

Kurt Pfeifle
- 86,724
- 23
- 248
- 345