gpt4 book ai didi

android - Instagram 分享问题 : sometimes I get the message "Unable to load image"

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:39:30 25 4
gpt4 key购买 nike

我正在使用 Intent 将共享功能用于社交应用程序。

我在 Instagram 中分享图片时遇到问题。

有时我会收到消息

Unable to load Image.

这是我的代码:

String path="content://media/external/images/media/32872";

Intent shareIntent = new Intent();
shareIntent.setType("image/jpeg");
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(path));
shareIntent.setPackage("com.instagram.android");
startActivity(shareIntent);

如何解决这个问题?

最佳答案

如果你有文件然后使用下面的代码分享图片,

private void shareIntagramIntent(String path) {
Intent intent = getActivity().getPackageManager()
.getLaunchIntentForPackage("com.instagram.android");
if (intent != null) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setPackage("com.instagram.android");
try {
shareIntent.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file://" + path));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
shareIntent.setType("image/jpeg");

startActivity(shareIntent);
} else {
// bring user to the market to download the app.
// or let them choose an app?
intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse("market://details?id="
+ "com.instagram.android"));
startActivity(intent);
}
}

关于android - Instagram 分享问题 : sometimes I get the message "Unable to load image",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31002961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com