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

Popular posts from this blog

1111. appearing after print sequence - php -

excel - I can't get the attachement of the email PHP -

node.js - Express and Redis - If session exists for this user, don't allow access -