I need to have a custom pdf viewer inside my application where i have my own menu and all.
It is not working with webview and i tried by converting each page into image but i feel its not a good way and it make my application big and complex.
Is there any way to create custom pdf view in
suggest me some link and tutorial
Thanks
Asked
Active
Viewed 3,111 times
3

Labeeb Panampullan
- 34,521
- 28
- 94
- 112
1 Answers
2
You obviously need a pdf renderer/viewer. Since core Android OS does not provide one you will need a 3rd party one.
Take a look at http://andpdf.sourceforge.net/

Peter Knego
- 79,991
- 11
- 123
- 154
-
Thanks Peter Knego. I cannot use it directly. I need the way to implement a pdf reader in my application. Like we implement webview – Labeeb Panampullan Jan 04 '11 at 10:22
-
This project is open-source so you can copy any classes that you need. – Peter Knego Jan 04 '11 at 11:48
-
It is GPL so no you can't just copy the code unless your code is also GPL – Ika Jun 11 '12 at 19:42
-
I just DL the source: it's triple licensed under `MPL 1.1/GPL 2.0/LGPL 2.1`. SO it should be OK to include in proprietary sw (as long as they do not change their code, just link to it). – Peter Knego Jun 11 '12 at 20:57