gpt4 book ai didi

java - Intent.ACTION_SEND 不适用于奥利奥

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:32:51 27 4
gpt4 key购买 nike

<分区>

我正在开发一个自定义相机应用程序,它可以捕捉图片并将其存储在图库中。当我使用 Intent.ACTION_SEND 分享该图像时,它在所有设备上都运行良好,但具有 API 26,即 OREO 的设备除外。

我分享图片的代码是:

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("image/jpeg");
Uri uriShare = Uri.fromFile(outFile);
//outfile is the path of the image stored in the gallery
shareIntent.putExtra(Intent.EXTRA_STREAM, uriShare);
startActivity(Intent.createChooser(shareIntent, ""));

谁能帮我解决这个问题?

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