Share image and text through Whatsapp or Facebook

前端 未结 12 925
谎友^
谎友^ 2020-11-28 05:23

I have in my app a share button and i want to share an image and a text at the same time. In GMail it works fine but in WhatsApp, only the image is sent and in Facebook the

12条回答
  •  日久生厌
    2020-11-28 05:41

    As of now, a Whatsapp Intent supports image and text:

    Intent shareIntent = new Intent();
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.putExtra(Intent.EXTRA_TEXT,title + "\n\nLink : " + link );
    shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(sharePath));
    shareIntent.setType("image/*");
    startActivity(Intent.createChooser(shareIntent, "Share image via:"));
    

    The image will be as it is and EXTRA_TEXT will be shown as the caption.

提交回复
热议问题