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

Popular posts from this blog

c++ - Function signature as a function template parameter -

How to call a javascript function after the page loads with a chrome extension? -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -