I still have this issue. Does anyone know what I am doing wrong. Other apps (like the gallery) can share images to Twitter/buzz; so, I must be missing something.
On Jun 16, 2:11 pm, jdeslip <[email protected]> wrote: > So, I added the following intent to my app to share images captured. > > Intent i=new > Intent(android.content.Intent.ACTION_SEND); > > i.setDataAndType(Uri.parse(sharedfilename),"image/jpeg"); > i.putExtra(Intent.EXTRA_SUBJECT, "Check out > this picture from SquirrelCam"); > i.putExtra(Intent.EXTRA_TEXT,"Taken with > SquirrelCam for Android"); > i.putExtra(Intent.EXTRA_STREAM, > Uri.parse(sharedfilename)); > startActivity(Intent.createChooser(i, "Share > Image")); > > It works as expected when using the intent to launch gmail/picassa/ > picsay/messenger but the image does not seem to attach it self when I > choose the Buzz of Twitter app from the share menu that pops up. I.e. > those two apps launch just with the text and not the image attached. > > Any idea what I am missing to have this intent launch buzz/twitter > with the image attached? -- 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

