以下のコードを使用して、Android で画像とテキストを共有しています。Whatsapp を選択すると、画像とテキストが一緒に共有されますが、Facebook を選択すると、テキストなしで画像が共有されます。私のコードの間違いは何ですか? ありがとう。
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(bitmapPath)));
share.putExtra(Intent.EXTRA_TEXT, "Shared via" + APP_URL);
startActivity(Intent.createChooser(share, "Share Image"));