Possible Duplicate:
How to send image via MMS in Android?
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 when a user take the picture from Gallery of the mobile?
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");