我希望能够共享我的Android应用程序中的内容,例如此模板:
这是一些文字(主要是有关共享图像的描述)
图片
通过MyApp共享
我当前使用此代码段:
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/*");
Uri imageUri = Uri.parse("android.resource://" + path);
share.putExtra(Intent.EXTRA_TEXT, "A description about the image below");
share.putExtra(Intent.EXTRA_STREAM,imageUri);
share.putExtra(Intent.EXTRA_TEXT, "Shared via MyApp");
startActivity(Intent.createChooser(share, "Choose a share option"));
仅第二个putExtra
被添加到共享中。
如何执行此任务?
非常感谢。
编辑:我的问题与How to Share Image + Text together using ACTION_SEND in android?不同 我知道如何共享文本和图像,但是我想在图像之前添加一个文本,在图像之后添加另一个文本。