打开 PDF Nougat+(文件目录)

Open PDF Nougat+ (File Directory)

我无法在 Ver. 上打开 PDF。 Nougat+,以下代码后出错。

打开 pdf 的任何其他方式或更好的方式,或如何更改外部目录的路径。

以下代码:

        Intent intent = new Intent(Intent.ACTION_VIEW);
        try {
            Uri path = Uri.fromFile(files.get(position));

            if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
                intent.setDataAndType(path, "application/pdf");
            } else {
                Uri uri = Uri.parse(String.valueOf(files.get(position)));
                File file = new File(uri.getPath());
                if (file.exists()) {
                    //File file1 = new File(getActivity().getFilesDir() + File.separator + "PDF" + File.separator + "eFSIS" + File.separator + "InspectionOrder.pdf");
                    Toast.makeText(mainActivity, file.toString(), Toast.LENGTH_SHORT).show();
                    uri = FileProvider.getUriForFile(getActivity(), BuildConfig.APPLICATION_ID + ".provider", file);
                    intent.setDataAndType(uri, "application/pdf");
                    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                }
            }
            intent = Intent.createChooser(intent, "Open With");
            intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
            getActivity().startActivity(intent);
        } catch (ActivityNotFoundException e) { }

供应商: (清单)

<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:

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <files-path name="internal_files" path="."/>
</paths>

错误: 这个错误是当我使用 'file' 路径时, java.lang.IllegalArgumentException: 无法找到包含 /storage/emulated/0/****/****/****/***.pdf

的已配置根目录

并且当我使用 'file1' 路径(评论中的那个)时,它不会崩溃,但它给了我错误的目录/路径。在 0/Android/data/***/etc.

也不能将 getUriForFile 路径更改为:Environment.getExternalStorageDirectory().toString() 保存我的 PDF 的位置。 会给我第一个错误。

TIA

<files-path 

用于 /data/data/<packagename>/files/.....

对于 /storage/emulated/0/..... 更改为

<external-path