我希望选择将图像分享给所有可能的选项。例如。邮件,WhatsApp,Facebook等,我希望当用户分享它时会有文字添加。例如在Gmail中,我希望在发送邮件之前添加标题,在Facebook上我也想向图像添加文本。我是否需要在我的应用中添加API?你能指点我正确的方向吗?
答案 0 :(得分:0)
首先将图像保存到SD卡,然后使用ACTION_SEND
Intent
。
http://developer.android.com/reference/android/content/Intent.html#ACTION_SEND
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/*");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + pathToFile));
ctx.startActivity(Intent.createChooser(share, "Share image")); //edit text shown in dialog here