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 -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -