facebook
を含むすべての可能なアプリでキャプションとともに画像を共有したいと思います。 私はこのコードを試しましたが、facebook
以外の他のすべてのアプリで動作しています。誰も画像と一緒にキャプションを共有する方法を教えてください。facebook
。はfacebookの画像と一緒に説明を共有します
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
shareIntent.putExtra(Intent.EXTRA_TEXT, caption);
shareIntent.setType("image/*");
mcontext.startActivity(Intent.createChooser(shareIntent, "Share Image"));
アプリ – Moorthy