我正在尝试使用以下代码通过彩信发送图像
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("sms_body", "Hi there");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
sendIntent.setType("image/png");
它打开消息应用程序并附加消息,但它没有写“sms_body”,在我的情况下是“你好”。为什么?