Android:下载并打开PDF格式文件2----用指定的software

来源:互联网 发布:jquery.min.js 使用 编辑:程序博客网 时间:2024/05/03 05:24

用指定的software来打开PDF格式文件,在我的项目中是用AdobeReader来打开。

So

public Intent getPdfFileIntent(String path){Intent i = new Intent(Intent.ACTION_VIEW);i.addCategory(Intent.CATEGORY_DEFAULT);i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK );Uri uri = Uri.fromFile(new File(path));i.setDataAndType(uri, "application/pdf");ComponentName app = new ComponentName("com.adobe.reader", "com.adobe.reader.AdobeReader");//The add line to specify the software!!!i.setComponent(app);return i;}