share a photo in instagram
i'm developping an app and i'm trying to share a picture in Instagram . i'm using the code below : Intent i = new Intent(Intent.ACTION_SEND); i.setType("image/jpeg"); i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///"+savedPhotoPath));//savedPhotoPath is the path of my picture stored somewhere in the sdcard startActivity(Intent.createChooser(i, "Share Image")); the problem is that the instagramm is launched with the home activity,( i want to have the activity of share that picture to be launched ). i've tried to put the extras like this : i.putExtra(Intent.EXTRA_STREAM, new File