インテントを使用して共有機能を実装しましたが、正しく機能しています。ビットマップをファイルに変換して共有しています。しかし、ユーザーが投稿を共有するときに、投稿とともに追加のキャプションを追加したいと考えています。私はこれを試しました:
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 は共有されません。イメージを正常に共有します。