Trying to initiate an intent to send an SMS to multiple recipients
with the following code:

Intent smsIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"sms", destination, null));

However in the destination string say I have
"555-555-5555,555-555-5556". The comma delimiter is working fine on a
Samsung vibrant. However, this will not work on a nexus 1. On the
nexus one i need to use a semicolon as the delimiter and then it
works. On the nexus one, if I use commas as the delimiter, it only
picks up the last phone number. If I use the semicolon, the nexus one
picks up all the phone numbers however, it then breaks the vibrant.
With the semicolon, the vibrant does not pick up any of the phone
numbers. Any insights?

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