我在我的應用程序中有resource/raw/color_chart_ciao.pdf
中的PDF文件。我想在我的應用程序中顯示該文件。我已經爲此編寫代碼:在android應用程序中顯示pdf
File file = new File("http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf");
System.out.println("FIle Path is" + file);
if (file.exists()) {
System.out.println("FIle Path is" + file);
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
System.out.println("pdf show");
}
catch (ActivityNotFoundException e) {
Toast.makeText(CiaoView.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
}
但是當我運行我的應用程序時,我無法在我的應用程序中看到PDF。 我在應用程序開發中更新鮮。所以請幫助解決這個問題。
感謝ü非常 – user642347