[android-developers] SMS intent ACTION_VIEW w/ multiple numbers not working on jelly bean (4.1)?

2012-07-10 Thread akd17
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 va

[android-developers] SMS ACTION_VIEW intent w/ multiple phone numbers not working on Jelly Bean (4.1)?

2012-07-10 Thread akd17
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 devic