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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just go through these links, its about code for reading PDF in android..
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..!