如何在Android手机中执行或打开文件(例如pdf文件)。我得到了fileTransfer工作,下载了一个pdf文件,但在尝试打开文件时丢失了。如果无法完成,至少可以在通知栏中发出下载完成的通知。提前谢谢。
答案 0 :(得分:1)
请访问以下链接。
http://code.google.com/p/apv/downloads/list
https://market.android.com/details?id=cx.hell.android.pdfview&feature=search_result
答案 1 :(得分:0)
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.fromFile(new File("/mnt/sdcard/location/of/the/pdf.file")));
startActivity(intent);