I want to send MMS from my app and i doing a lot of search and have nothing just 2 codes : the First one is this:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpg");
sendIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
sendIntent.putExtra("sms_body", "hello");
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivityForResult(sendIntent, 0);
So, My Question is,
- is this works?
- is it complete code ? if not what should i add ?