我已经使用 Intents 实现了共享功能并且它工作正常。我通过将其转换为文件来共享位图。但是当用户分享它时,我想在帖子中添加一个额外的标题。我试过这个:
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/*");
share.putExtra(Intent.EXTRA_TEXT, " Shared via App"); //this part doesnt work
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + sharefile));
//sharefile is my image file. It gets shared properly.
try {
startActivity(Intent.createChooser(share, "Share Product"));
} catch (Exception e) {
}
但它不共享 CAPTION。它成功共享图像。