hi,
I am trying to send an sms by using android native messaging application as
follows
Uri smsToUri = Uri.parse("smsto://5556");
Intent i = new Intent(Intent.ACTION_SENDTO,
smsToUri);
i.putExtra("sms_body", "This must get sent");
startActivity(i);
All it does is open a compose window with "To" and "Body" filled in. What
do I need to do so that the SMS is sent automatically?
Where can I find references to valid putExtras that I MUST do to send an
SMS? I couldn't find any useful info on Android developer guide - perhaps I
didn't notice them.
Kindly help.
-vignesh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---