I want to use Android pdf library http://andpdf.sourceforge.net/, but i have same error. Log:
ST=\'file \'no file selected\' not found\'
ST=\'reading page
Now we have this awesome library for PDF viewing:
https://github.com/JoanZapata/android-pdfview
It is really simple to use and has a lot of features:
Android PDFView is a library which provides a fast PDFView component for Android, with animations, gestures, and zoom. It's based on VuDroid for decoding the PDF file.
Just include the view in your XML and use it as follows:
pdfView.fromAsset(pdfName)
.pages(0, 2, 1, 3, 3, 3)
.defaultPage(1)
.showMinimap(false)
.enableSwipe(true)
.onDraw(onDrawListener)
.onLoad(onLoadCompleteListener)
.onPageChange(onPageChangeListener)
.load();