Hi,

in my App I want to send a SMS via...

Uri uri = Uri.parse("smsto:1234567891012");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "The SMS text");
startActivity(it);

... because I want that the SMS that has being sent is in my built in
SMS-App... with the PendingIntent it is not saved there...

Is it possible that I send the SMS directly, so that the User don“t
have to push the send Button?

Thanks

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

Reply via email to