pdf viewer - Android: file not found using android-pdfviewer -
i integrated pdfviewer.jar taken http://andpdf.sourceforge.net/ application. trying view pdf file located in raw folder. showing "file 'android.resource://com.example.pdf/raw/demo.pdf' not found": following code snippet:
intent intent = new intent(this, mypdfactivity.class); intent.putextra(pdfvieweractivity.extra_pdffilename, "android.resource://com.example.pdf/raw/demo.pdf"); startactivity(intent);
could of tell me whats wrong , whats correct path given?
Comments
Post a Comment