loopj / android-smart-image-view

Android ImageView replacement which allows image loading from URLs or contact address book, with caching
http://loopj.com/android-smart-image-view/
1.3k stars 510 forks source link

share (not working) mms #34

Open ye4ever opened 10 years ago

ye4ever commented 10 years ago

hi ,

when i try share image

Intent share = new Intent(Intent.ACTION_SEND);
        share.setType("image/*");

        share.putExtra(Intent.EXTRA_STREAM, Uri.parse(URL));

        startActivity(Intent.createChooser(share, "Share Image"));

I want to position the image in the cache so I can share
where smart image view save image ?

MrEngineer13 commented 10 years ago

I am having the same problem, have you resolved this issue?