从我的 Android 应用程序捕获的图像已保存,但未显示在图库应用程序上

发布于 2025-01-08 09:12:57 字数 145 浏览 2 评论 0原文

我已经构建了一个 Android 应用程序,它捕获图像并保存在 /mnt/sdcard/Pictures/MyFolder 实际上,应用程序运行完美,并且图像也存储在给定路径中。问题是在重新启动设备之前我无法看到图像。我可以在编码中处理这种情况吗?

提前致谢。

I have build an Android application which capture images and save in the /mnt/sdcard/Pictures/MyFolder Actually application is running perfectly and also images store in the given path. The problem is I cannot see the images till I restart the device. Can I handle the situation in my coding?

Thanks in advance.

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

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

发布评论

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

评论(1

ぶ宁プ宁ぶ 2025-01-15 09:12:57

如果您的意思是您看不到图库应用程序中的图像,您可以使用此方法来修复它:

String[] paths = { "/mnt/sdcard/Pictures/MyFolder" };
String[] mediaType = {"image/jpeg"};
MediaScannerConnection.scanFile(this, paths, mediaType, null);

If what you mean is that you cannot see the images in your gallery app you can use this to fix it:

String[] paths = { "/mnt/sdcard/Pictures/MyFolder" };
String[] mediaType = {"image/jpeg"};
MediaScannerConnection.scanFile(this, paths, mediaType, null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文