It should be straightforward to open the SMS app with the ACTION_VIEW intent as shown below, pre-populated with multiple recipients:
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse ("sms:1234567890;1234543210")); i.putExtra("sms_body", "hello!"); This works on versions 4.0 and below on a variety of devices, but it's not working on my galaxy nexus running 4.1; only a single phone number is populated in the SMS screen instead of all the numbers in the semicolon-separated list. Anyone else aware of this? -- 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