【发布时间】:2015-01-19 18:17:33
【问题描述】:
我已经使用 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。它成功共享图像。
【问题讨论】:
-
您将图像和标题分享给哪个应用程序?
-
Facebook,instagram,多个 :) 有一个选择器,所以用户决定 @Tanis.7x
标签: java android android-intent mobile android-sharing