CopyPastor

Detecting plagiarism made easy.

Score: 0.9666250577007515; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2012-04-22
by Shankar Agarwal

Original Post

Original - Posted on 2011-01-09
by pmko



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Intent smsIntent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:5551212;5551212")); smsIntent.putExtra("sms_body", "sms message goes here"); startActivity(smsIntent);
Add a semicolon delimited list of phone numbers to "smsto:" as the URI in the Intent constructor. Also refer this [LINK][1]

[1]: https://stackoverflow.com/questions/5448140/sending-sms-to-multiple-people-in-android
Intent smsIntent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:5551212;5551212")); smsIntent.putExtra("sms_body", "sms message goes here"); startActivity(smsIntent);
Add a semicolon delimited list of phone numbers to "smsto:" as the URI in the Intent constructor.

        
Present in both answers; Present only in the new answer; Present only in the old answer;