我正在开发一个多媒体应用程序。我正在通过相机拍摄一张图像,并希望将该图像与文本一起发送到其他号码。但我不知道如何通过彩信发送图像。
有没有办法在我自己的应用程序中发送彩信并使用 BroadcastReceiver 注册监听传入的彩信?
要在捕获后将图像作为彩信发送,请在内部使用以下代码onActivityResult()
:
Uri _uri=data.getData();
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/jpeg");
sharingIntent.putExtra(Intent.EXTRA_STREAM, _uri);
startActivity(Intent.createChooser(sharingIntent, "Share"));