Hello I am sending image using following. the image successfully send by application. But The subject and text r not getting added to email.
I want to add body containing some hyperlink, I am doing this Intent.EXTRA_TEXT but it is not going to added. Will somebody will clear suggest me for. None of EXTRA working (subject, title, text); Uri uri = ContentUris.withAppendedId(Media.EXTERNAL_CONTENT_URI, 2); Intent i = new Intent(); i.setAction(Intent.ACTION_SEND); i.setType("image/jpeg"); i.putExtra(Intent.EXTRA_SUBJECT, "jigsaw"); i.putExtra(Intent.EXTRA_TEXT, "http://code.google.com/ android"); i.putExtra(Intent.EXTRA_TITLE, "ETitle"); i.putExtra(Intent.EXTRA_STREAM, uri); i = Intent.createChooser(i, "Send"); startActivity(i); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---