如何使用intent选择pdf文件并在onActivityResult中获取选定的pdf文件路径

时间:2016-10-18 06:10:06

标签: android pdf android-intent mime-types

  • 我正在尝试使用intent选择pdf并获取所选的pdf文件路径我不确定它是对还是错。
  • 如果没有,那么我如何在onActivityResult中获得pdf路径。

Intent intent = new Intent();
intent.setType("pdf/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select PDF"), PDF_PICKER_RESULTS);

1 个答案:

答案 0 :(得分:1)

使用application / pdf行,我可以做到这一点。

data