Hi!

With the following code I can make a call to a specific number with
Androids built-in Phone application:

Intent i = new Intent("android.intent.action.CALL", Uri.parse("tel:" +
phonenumber));
startActivity(i);

Is there anyway I can do the same to start the SMS application? I mean
start the activity where you can write an SMS with the phonenumber
already there.
something like this:

Intent i = new Intent("android.intent.action.START_SMS_APPLICATION",
Uri.parse("tel:" + phonenumber));
startActivity(i);

thanks in advance
//HTP
--~--~---------~--~----~------------~-------~--~----~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to