实际上,我想通过意图在 Instagram 中分享图像。
我为保存在 SD 卡上的图像找到了这个解决方案,但我想对现场图像做同样的事情(链接)。
我试过了
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent
.putExtra(
Intent.EXTRA_STREAM,
Uri.parse("http://www.alliswell.biz/images/products/art/alliswell_signs/yellowB.jpg"));
shareIntent.setPackage("com.instagram.android");
startActivity(shareIntent);
但它不起作用。
编辑
当我开始上面的意图时,它会打开我安装的 Instagram 应用程序并立即完成 Instagram 和 toast 消息“无法下载文件”
实际上它并没有分别解析链接和图像。应该是什么问题?