Android 图片保存到 SD 卡不显示在图库中

发布于 2024-11-19 21:48:33 字数 70 浏览 1 评论 0原文

目前我有一个程序可以拍照并将其以 jpg 格式保存在 SD 卡的顶层,但它没有出现在图库中。我必须做些什么才能实现这一目标吗?

Currently I have a program that takes pictures and saves them as a jpg on the top level of the sdcard, but its not appearing in the Gallery. Is there something I must do to make it happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ぇ气 2024-11-26 21:48:33

您需要调用MediaScanner以便它知道您的文件存在:

File file; // = your file
String mimetype; // = your file's mimetype. MimeTypeMap may be useful.
MediaScanner.scanFile(getApplicationContext(), new String[]{file.getPath()}, new String[]{mimetype}, null);

You need to call the MediaScanner so that it knows your file exists:

File file; // = your file
String mimetype; // = your file's mimetype. MimeTypeMap may be useful.
MediaScanner.scanFile(getApplicationContext(), new String[]{file.getPath()}, new String[]{mimetype}, null);
方觉久 2024-11-26 21:48:33

试试这个答案。为我工作

context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(finalFile)));

Try this answer. Working for me

context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(finalFile)));
听闻余生 2024-11-26 21:48:33

也许有人正在“监督”它......

看看:
https://stackoverflow.com/a/5110571/371749

Maybe someone is "overseeing" it...

Take a look at:
https://stackoverflow.com/a/5110571/371749

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文