Android(分享按钮)在 Intent.createChooser 的 startActivity 中崩溃适用于除 Pixel 以外的大多数手机

Android (share button) crash in startActivity for Intent.createChooser works with most of phones except pixel

我正在开发用于将 png 图像分享到 facebook 的应用程序,该代码在我的华为荣耀 8 中运行良好,但在 google 像素 2 时崩溃。 代码:

showLoading("Saving...");
File f = new File(Environment.getExternalStorageDirectory()
                + File.separator + ""
                + System.currentTimeMillis() + ".png");
photoEditorView.getSource().setImageURI(Uri.fromFile(f));
Uri contentUri = Uri.fromFile(f);
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/png");
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, "title");
values.put(MediaStore.Images.Media.MIME_TYPE, "image/png");
share.putExtra(Intent.EXTRA_STREAM, contentUri);
startActivity(Intent.createChooser(share, "Share Image!"));

试试这个代码,

File nFile = new File(selectedImagePath);
                    Uri mmuri;
                    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                        mmuri = getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider",nFile);
                    } else{
                        mmuri = Uri.fromFile(nFile);
                    }

使用 mmuri uri 发送图像。

在清单中添加

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

在 res 中创建 xml 文件夹并创建 provider_paths.xml 文件并添加以下代码。

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="external_files"
        path="." />
    <root-path
        name="external_files"
        path="/storage/" />
</paths>