share a photo in instagram

我是研究僧i 提交于 2019-12-02 07:37:30

问题


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,


回答1:


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 :

i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+savedPhotoPath));// it will give : file:///sdcard/...


来源:https://stackoverflow.com/questions/13497543/share-a-photo-in-instagram

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!