Padma
Padma

Reputation: 656

Android : Adding image in email

I want to add image in email, if I add the file from sdcard then its working fine as given below.

emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file///sdcard/Images/thumb.jpg)"));

But I want to add the image from assest. I have tried so many pernutation and combination with uri.parse and uri.fromfile but nothing works, can anyone tel how exactly the path should be to add the file from assets. Its very urgent.

Upvotes: 2

Views: 917

Answers (2)

tsi
tsi

Reputation: 11

isnt it?:

file:/// instead of file///

... you missed the ":"

Upvotes: 1

Related Questions