Using share intent in android for instagram -


i want share image instagram in app. facebook, twister... know, can using share itent wit instagram don't know. please me. in advance!

here solution using share intent

this sample

intent share = new intent(intent.action_send);                 share.settype("image/jpeg");                 share.putextra(intent.extra_stream,              uri.parse("file://"+environment.getexternalstoragedirectory()+"/pictures/jusgramm.jpg"));                 //share.putextra(intent.extra_stream,data);                 startactivityforresult(intent.createchooser(share, "share image via"),share_pic_request); 

Comments

Popular posts from this blog

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -

php - Deleting/Renaming a locked file -