在android中使用Intent选择PDF文件

时间:2015-12-14 11:07:05

标签: android android-intent

嘿我是android的新手我需要使用pdf选择Intent个文件。我使用此代码来设置MIME的类型。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("pdf/*")

但它没有按我想要的方式工作,请提供任何建议或者我可以对现有代码进行一些更改。

2 个答案:

答案 0 :(得分:2)

执行此操作intent.setType("application/pdf");

答案 1 :(得分:2)

尝试以下代码:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);