http://andpdf.sourceforge.net/から取得した Pdfviewer.jar をアプリケーションに統合しました。raw フォルダーにある pdf ファイルを表示しようとしています。ただし、「ファイル 'android.resource://com.example.pdf/raw/demo.pdf' が見つかりません」と表示されています。以下は私のコード スニペットです。
Intent intent = new Intent(this, MyPdfActivity.class);
intent.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, "android.resource://com.example.pdf/raw/demo.pdf");
startActivity(intent);
何が間違っていて、正しいパスを教えてもらえますか?