如何使用意图选择pdf文件并在onActivityResult中获取所选的pdf文件路径

问题描述 投票:2回答:1
  • 我正在尝试使用意图选择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);
android pdf android-intent mime-types
1个回答
1
投票

使用应用程序/ pdf行,我可以执行此操作。

Intent intent = new Intent();
intent.setType("application/pdf");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select PDF"), PDF_PICKER_RESULTS);
© www.soinside.com 2019 - 2024. All rights reserved.