gpt4 book ai didi

android - 分享视频并将视频保存到图库

转载 作者:行者123 更新时间:2023-11-29 00:16:37 25 4
gpt4 key购买 nike

我有视频 url,我从中解析以获取 uri。我尝试在分享中传递 uri,但我没有看到正在分享的视频。

Uri uri = Uri.parse(url);
Intent sharingIntent = new Intent(
Intent.ACTION_SEND);
sharingIntent.setType("video/*");
sharingIntent.putExtra(Intent.EXTRA_STREAM,uri
);
startActivity(sharingIntent);

我是不是遗漏了什么,或者我应该将 uri 保存到外部存储然后传递它?

我还需要知道如何使用 uri 将视频保存到图库。

最佳答案

使用这个:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("video/mp4");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(path)));
startActivity(Intent.createChooser(intent, "share"));

“路径”是你的视频像/sdcard/mVideo.mp4一样传递

关于android - 分享视频并将视频保存到图库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26262773/

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