Hi guys -- I have a user using a Droid Incredible, and he tells me
that when he shares images from my app (Photo Enhance), all the usual
suspects are listed (Twitter, Facebook and so on) but not messaging.

This isn't the case for my on my N1, nor on the emulator -- any idea
what I have to do differently. Here's my code at the moment (which
looks right to me, so I'm stumped):


                                        Intent msg = new 
Intent(Intent.ACTION_SEND);
                                        msg.setType("image/jpeg");
                                        msg.putExtra(Intent.EXTRA_STREAM, uri);
                                        
startActivityForResult(Intent.createChooser(msg, "Share
image"), PhotoEnhance.ACTIVITY_EXPORT);

Any ideas?

Thanks in advance,

Mark

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