File file = new File("android.resource://com.baltech.PdfReader/assets/raw/"+filename);
                    if (file.exists()) {
                    Uri targetUri = Uri.fromFile(file);
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(targetUri, "application/pdf");
                        try {
                            startActivity(intent);
                        } 
                        catch (ActivityNotFoundException e) {
                            Toast.makeText(PdfReaderActivity.this, "No Application Available to View PDF", Toast.LENGTH_SHORT).show();
                        }
assetsフォルダにある.pdfファイルを読みたいです。ファイル名に指定するパス。助けてください。ありがとう