Re: [android-developers] Best way to launch Messaging app via intent

2010-01-13 Thread Mark Murphy
Dianne Hackborn wrote: > The stock SMS/MMS application handles the SENDTO action with an sms:, > smsto:, mms:, or mmsto: URI. I can't guarantee that devices shipping > with a custom MMS app will also handle these, though. Hey, thanks for the info! I've added an issue, requesting that this be add

Re: [android-developers] Best way to launch Messaging app via intent

2010-01-13 Thread Dianne Hackborn
The stock SMS/MMS application handles the SENDTO action with an sms:, smsto:, mms:, or mmsto: URI. I can't guarantee that devices shipping with a custom MMS app will also handle these, though. On Wed, Jan 13, 2010 at 2:21 AM, Steve wrote: > Hi. What is the recommended way to launch the messagi

Re: [android-developers] Best way to launch Messaging app via intent

2010-01-13 Thread Mark Murphy
Steve wrote: > Hi. What is the recommended way to launch the messaging app (for > sending an MMS message) via an intent? There is no way to launch specifically the Messaging app that is covered in the SDK. > The following code works on my > HTC Magic ... > > Intent intent = new Intent(Inte

[android-developers] Best way to launch Messaging app via intent

2010-01-13 Thread Steve
Hi. What is the recommended way to launch the messaging app (for sending an MMS message) via an intent? The following code works on my HTC Magic ... Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra("address", "021555"); intent.putExtra("sms_body", "my message text")

[android-developers] Best way to launch messaging app via intent

2010-01-13 Thread Steve
Hi. What is the recommended way to launch the messaging app (for sending an MMS message) via an intent? The following code works on my HTC Magic ... Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra("address", "021555"); intent.putExtra("sms_body", "my message text")