Hi, I have this code: Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); startActivity(intent);
which successfully launches an Messaging App on android. But how can i attach a Bitmap object when launching the intent? I have read http://developer.android.com/reference/android/content/Intent.html, the closet thing to what i need is EXTRA_STREAM, like this: intent2.putExtra(Intent.EXTRA_STREAM, _uri); but my case, I have a reference of Bitmap object, not an URI of an Bitmap. Please tell me what can I do to attach a Bitmap object? Thank you. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

