Here is a solution by using share intent
This is 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);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…