如何在WhatsApp中以单个标题共享多张图像?

时间:2019-05-21 06:19:58

标签: android arraylist whatsapp

我想通过Whatsapp与文本共享图像数组,但是有一个文本总是与每个图像一起发送。 我尝试了很多方法,但是没有用。

try {

     Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
     shareIntent.setType("text/html");
     shareIntent.putExtra(Intent.EXTRA_STREAM, (ArrayList<? extends Parcelable>) getUri(bitmapList));
     shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "farm");
     shareIntent.putExtra(android.content.Intent.EXTRA_TEXT,"image");

     context.startActivity(shareIntent);
 }catch (Exception e){e.printStackTrace();}

请帮助我。谢谢。

现在我得到的输出如下image with seperate text 我想要的输出如下: image with single text

0 个答案:

没有答案