Skip to content Skip to sidebar Skip to footer

Attaching An Drawable Image To Email In Android

I have a list of Drawable images in my application and want to send one of the images through mail. my code looks like Intent sendIntent = new Intent(Intent.ACTION_SEND); sendInten

Solution 1:

You can do it by saving that image to a temporary location on internal/external cache directory as an image and then use that image's path in the attachment using Uri.


Post a Comment for "Attaching An Drawable Image To Email In Android"