Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to create PDF viewer in Android? [closed]

Tags:

android

pdf

I want to create a PDF viewer in Android..

So is it possible to do it? If yes, can anyone suggest me some sample code or guide.

like image 813
Aamirkhan Avatar asked Dec 07 '11 07:12

Aamirkhan


1 Answers

Just go through these links, its about code for reading PDF in android..

  • Android PDF Viewer
  • VuDroid
  • droidreader
  • android-pdf
  • APDFViewer

EDIT: I think most of these are use JNI(In native load C,C++ library) to render pdf file. So You have to some basic knowledge of how JNI works.

Or If you want to make your own PDF reader then you can use any third party C,C++ library for render PDF file and build a shared library and make a call from your android app (Using JNI) but is to hard work(I know I gone through this process).. :-) All the best..!

like image 108
user370305 Avatar answered Oct 06 '22 01:10

user370305