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

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -