android - Why is my share function only working with whatsapp? -
i have full screen activity: public class fullimageactivity extends activity { @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.full_image); // intent data intent = getintent(); // selected image id int position = i.getextras().getint("id"); imageadapter imageadapter = new imageadapter(this); imageview imageview = (imageview) findviewbyid(r.id.full_image_view); imageview.setimageresource(imageadapter.mthumbids[position]); bitmapdrawable bm = (bitmapdrawable) imageview.getdrawable(); bitmap mysharebmp = bm.getbitmap(); try { bytearrayoutputstream bytes = new bytearrayoutputstream(); mysharebmp.compress(bitmap.compressformat.jpeg, 100, bytes); //you can create new file name "test.jpeg" file f = new file(environment.getexternalstor...