gpt4 book ai didi

Android FileProvider 找不到文件

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:11 26 4
gpt4 key购买 nike

我是 Android 编程的新手,学习过几个不同的教程。目标是将 pdf 文件从 Assets 文件夹复制到外部存储,然后在按下按钮打开 PDF 查看器时打开 Intent。我尝试使用 FileProvider 将我的代码调整为最新的 Android 版本,如下所述:https://inthecheesefactory.com/blog/how-to-share-access-to-file-with-fileprovider-on-android-nougat/en

在较旧的 Android 版本上打开文件是有效的,所以我知道整个复制过程是有效的,问题是我无法弄清楚我的代码中的错误在哪里。

 File file = new File(Environment.getExternalStorageDirectory() + "/" + "index.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW);
//old version
Uri fileURI = Uri.fromFile(file);
//new version
Uri fileUri = FileProvider.getUriForFile(MainActivity.this,
BuildConfig.APPLICATION_ID + ".provider", file);

getApplicationContext().grantUriPermission(PACKAGE_NAME, fileUri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(fileUri,"application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

我按照以上链接中的描述设置了我的 FileProvider。

<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

使用下面的 xml

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

如果有人能解释我的错误,我会很高兴。

最佳答案

根据评论:我必须添加 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);还有。

关于Android FileProvider 找不到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43168024/

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