美好的一天,大家。我最近遇到了烦人的问题 - 当我尝试通过Intent启动Instagram应用时,Instagram活动开始片刻,并立即关闭,让我回到我的应用程序。此问题仅在一两天前出现,并且相同的代码按预期工作。有没有人遇到过同样的行为?也许存在一些变通方法?
答案 0 :(得分:0)
试试这个,
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"));