-1
如何從原始文件夾打開PDF文件? 這種訪問代碼的PDF文件從SD卡文件..從原始文件夾打開PDF文件?
File file = new File(getFilesDir(), "teen_ebook.pdf");
try {
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
Log.e("IR", "No exception");
}
else {
Toast.makeText(PdfActivity.this, "File NotFound",Toast.LENGTH_SHORT).show();
}
}
catch (ActivityNotFoundException e) {
Toast.makeText(PdfActivity.this, "No Application Available to View PDF", Toast.LENGTH_SHORT).show();
}
但我想訪問的PDF文件從原文件夾? 任何一個在這裏。請給我建議。
的(http://stackoverflow.com/questions/19865276/best-way-to-include-pdfs-in-an-app) – CommonsWare
[以包括在應用中的PDF文件的最佳方式]可能重複請告訴我以其他方式訪問PDF文件。 –