How to send image via MMS in Android?

后端 未结 4 1920
深忆病人
深忆病人 2020-11-22 04:36

I am working on a multimedia application. I am capturing one image through the camera and want to send that image with a text to some other number. But I am not getting how

4条回答
  •  执笔经年
    2020-11-22 05:18

    This seems to be answered in the post: Sending MMS with Android

    Key lines of code being:

    Intent sendIntent = new Intent(Intent.ACTION_SEND); 
    sendIntent.putExtra("sms_body", "some text"); 
    sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
    sendIntent.setType("image/png"); 
    

提交回复
热议问题