gpt4 book ai didi

android - 如何在android中选择PDF文件

转载 作者:行者123 更新时间:2023-11-29 23:36:09 28 4
gpt4 key购买 nike

我尝试从我的 Android 手机下载一个 pdf 文件到 Firebase,但是当我点击按钮在我的手机中选择一个文件时,我收到这个错误:找不到执行此操作的应用程序。

这很奇怪,因为我手机中有 Adob​​e Acrobat Reader pdf 阅读器,可以让我阅读手机中的所有 pdf 文件。

请告诉我我的代码有什么问题。

ps: 我在Android 4.0.3 上执行我的代码

这是我的代码。

Intent intent = new Intent();
intent.setType("application/pdf");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_PDF_CODE);

最佳答案

试试这个它的工作代码

   Intent intentPDF = new Intent(Intent.ACTION_GET_CONTENT);
intentPDF.setType("application/pdf");
intentPDF.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(Intent.createChooser(intentPDF , "Select Picture"), PICK_PDF_CODE);

关于android - 如何在android中选择PDF文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52217026/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com