共享图像意图在Samsung S8中不起作用

时间:2018-06-28 14:59:31

标签: android image share samsung-mobile

我有这种方法可以从视图共享屏幕截图。

try {
            File mPath = new File(getContext().getExternalFilesDir(Environment.DIRECTORY_PICTURES), new Date() + ".png");
            v.setDrawingCacheEnabled(true);
            Bitmap bitmap = Bitmap.createBitmap(v.getDrawingCache());
            v.setDrawingCacheEnabled(false);

            FileOutputStream fOut = new FileOutputStream(mPath);
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, fOut);
            fOut.flush();
            fOut.close();

            final Intent i = new Intent(Intent.ACTION_SEND);
            Uri pictureUri = FileProvider.getUriForFile(getContext(), getContext().getApplicationContext().getPackageName() + ".example.provider", mPath);
            i.setType("image/*");
            i.putExtra(Intent.EXTRA_TEXT, "example" + SPACE + getShareStringForDate() + "image" + PLAY_STORE + BuildConfig.APPLICATION_ID);
            i.putExtra(Intent.EXTRA_STREAM, pictureUri);
            i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            getContext().startActivity(Intent.createChooser(i, getResources().getString(R.string.shareImageWith)));
        } catch (Throwable tr) {
            Utiles.showToastLong(getResources().getString(R.string.error), getActivity());
        }

此解决方案效果很好,但是我遇到一个有问题的用户,当他按下该按钮时,不会打开对话框,但不会失败。 他们的手机是三星S8。

为什么不起作用?你能帮我吗?

0 个答案:

没有答案