Reputation: 656
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
Reputation: 1825
Refer http://developer.android.com/reference/android/content/res/AssetManager.html
Upvotes: 0