I am sending MMS with the existing mms client using this code -

   1. Uri mmsUri = Uri.parse("content://media/external/images/media/
1");
   2. Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra
("sms_body", "Hi how are you");
   3. intent.putExtra(Intent.EXTRA_STREAM, mmsUri);
   4. intent.setType("image/png");
   5. startActivity(intent);

But how can I specify the recipient number to the client? I am not
finding any example for this issue. Please help.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to