Android Share intent not loading images -
when try share image in facebook using intent getting message "sorry couldn't load photo"
i'm using following code,
uri imageuri = uri.parse("android.resource://"+getpackagename()+"/drawable/"+filename); intent intent = new intent(intent.action_send); intent.settype("image/jpg"); intent.putextra(intent.extra_stream, imageuri); startactivity(intent.createchooser(intent , "share")); when tried send via gmail, getting no attachment. may know reason?
some application(like gmail, facebook, google plus ...) can't photo attach, because imageuri private.
you should save drawable gallery or public folder, newimageuri share. intent.putextra(intent.extra_stream, newimageuri);
Comments
Post a Comment