It should be straightforward to open the SMS app with a pre-populated set of 
phone numbers as shown below:

Intent i = new Intent(Intent.ACTION_VIEW, 
Uri.parse("sms:1234567890;1234543210"));
i.putExtra("sms_body", "hello!");

This has been working on versions 4.0 and below on a variety of devices, but 
not on 4.1 (tried with galaxy nexus as well as emulator).  Instead of the 
multiple semicolon-separated phone numbers, only one number is pre-populated in 
the SMS screen.  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

Reply via email to