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(savedPhotoPath));
and
i.putExtra(Intent.EXTRA_STREAM, Uri.parse(savedPhotoPath));
with the same result , always , the home activity of instagram application is launched .
any ideas how to solve this problem?
Regards,
it's just a stupid error i've made, i've added a slash on the
file:///
path , and it will concat with savedPhotoPath and it will become 4 slashes , so the correct way to put extras is :