Here is the solution using the sharing intent
This is a 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);
manhhoangxuan
source share