[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 variety

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

2012-07-10 Thread Mark Murphy
On Fri, Jul 6, 2012 at 5:06 AM, akd17 akhil.d...@flixster-inc.com wrote: 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)); IETF