There is a similar question here: http://groups.google.com/group/android-developers/browse_thread/thread/b945b73d36742ea0/0beb9ad68a295f83?lnk=gst&q=sms+intent&pli=1
but unfortunately it doesn't help :( On Nov 28, 5:58 pm, westmeadboy <[email protected]> wrote: > I have an SMS represented by this URI: > > content://sms/123 > > and wish to start whatever SMS application can display that SMS. > > So I tried: > > Intent intent = new Intent(Intent.ACTION_VIEW, uri); > startActivity(intent); > > 11-28 17:36:19.817: ERROR/AndroidRuntime(5609): > android.content.ActivityNotFoundException: No Activity found to handle > Intent { action=android.intent.action.VIEW data=content://sms/123 } > > on the 2.0 emulator, it brings up a dialog box showing some > "unsupported" message. > > Then I tried: > > Intent intent = new Intent(null, uri); > startActivity(intent); > > which takes me to the "Set up your google account" wizard on my HTC > Hero and to the SMS composition activity on my 2.0 emulator. > > 1. Is there an Intent for displaying individual SMS messages? If not, > an intent for displaying the Inbox? > 2. Where is the starting point for documentation on which actions are > supported for various uris etc? -- 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

