在我的应用程序中,我的要求是同时发送图像和文本。所以我使用下面的代码
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_TEXT, "My photos");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///"+f));
startActivity(Intent.createChooser(share, "Share Image"));
但只发送图像,但不发送文本。我怎么解决这个问题?