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();
}
我想閱讀資產文件夾中的.pdf文件。我有什麼路徑可以給文件名。 plz幫助。由於如何閱讀資產文件夾中的.pdf文件
原材料不在資產 – njzk2 2012-04-13 08:51:17
我現在在原始文件夾中放置了資源。我怎麼能從res/row文件夾中獲取文件? – ZooZoo 2012-04-13 09:41:24