Whatsapp上的图像共享无法正常工作

时间:2018-05-20 16:58:50

标签: android share whatsapp whatsapi

我想将我的应用中的图片分享给Whatsapp,但它给了我错误" 分享失败,请再试一次"这是我的代码:

String text = "Look at my awesome picture";
        Uri pictureUri = Uri.parse("file://www.punjabidharti.com/wp-content/uploads/2018/05/baap-600x600.jpg");
        Intent shareIntent = new Intent();
        shareIntent.setAction(Intent.ACTION_SEND);
        shareIntent.putExtra(Intent.EXTRA_TEXT, text);
        shareIntent.putExtra(Intent.EXTRA_STREAM, pictureUri);
        shareIntent.setType("image/*");
        shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        startActivity(Intent.createChooser(shareIntent, "Share images..."));

我正在使用我网站上的图片网址。

1 个答案:

答案 0 :(得分:0)

您正在传递http网址而不是文件网址。让你的uri像这样,它会起作用

Uri pictureUri = Uri.parse("http://www.punjabidharti.com/wp-content/uploads/2018/05/baap-600x600.jpg");