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

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -