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
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
2 matches
Mail list logo