如何在我自己的应用程序中发送彩信?

时间:2013-10-09 02:25:53

标签: android eclipse api

我正在研究多媒体应用程序。我正在通过相机捕获一个图像,并希望将带有文本的图像发送到其他数字。但我没有得到如何通过彩信发送图像。

有没有办法在我自己的应用程序中发送彩信,并使用BroadcastReceiver注册收听传入的彩信?

1 个答案:

答案 0 :(得分:1)

  • 要在捕获后将图像作为彩信发送,请在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"));