How can I send a picture from android application via MMS? I found this code but I don't know how can I insert picture inside it specially I want to let my application send the MMS. I do not want to send it via another application.
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");