7

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.

hitansu jena
  • 223
  • 2
  • 4
  • 5

6 Answers6

3

Get PDF API from either this or this

Harshad
  • 7,904
  • 3
  • 24
  • 42
2

Try Mobi. Very powerful and fast PDF viewer. Very easy to integrate and use.

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

Have you looked at qoppas pdf viewer

mark stephens
  • 3,205
  • 16
  • 19
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

MuPDF.

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