Share image and text through whatsapp

后端 未结 4 2228
甜味超标
甜味超标 2020-12-06 20:04

I use the following code to share an image and text through WhatsApp. It only shares the image, not the text, however. I have searched all over the Internet, but haven\'t fo

4条回答
  •  忘掉有多难
    2020-12-06 20:31

    Intent i = new Intent(android.content.Intent.ACTION_SEND);
     i.setType("text/plain");
     i.putExtra(Intent.EXTRA_SUBJECT, "Subject");
     i.putExtra(Intent.EXTRA_TEXT, "Message body");
    startActivity(Intent.createChooser(i, "Share dialog title"));
    

提交回复
热议问题