如何仅从 DCIM 目录获取图像选择器

发布于 2024-11-17 08:58:01 字数 299 浏览 4 评论 0原文

我必须在我的 Android 应用程序中包含一个图像选择器。 我是这样设置的:

Intent intentGallery = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intentGallery, 0);

但是显示的是SD卡的所有图片。我只想显示用相机拍摄的照片(在 DCIM 文件夹中)。

可以这样做吗?

I have to include an image picker in my android app.
I set it like this :

Intent intentGallery = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intentGallery, 0);

But all the pictures of the SD card are displayed. I only want to show the pictures taken with the camera (in the DCIM folder).

Is it possible to do that ?

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

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

发布评论

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

评论(2

留一抹残留的笑 2024-11-24 08:58:01

不,这是不可能的。
如有必要,您可以实现自己的画廊,该画廊仅从

    android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI

和 中挑选图像

    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI

No, it is not possible.
If necessary, you can implement your own gallery, that will pick images only from

    android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI

and

    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI
奢欲 2024-11-24 08:58:01

您可以使用 android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI 来访问设备上的图像而不是 SD 卡。

[编辑]

浏览 Android 源代码,特别是 Gallery 应用程序,我偶然发现了

public static final String CAMERA_IMAGE_BUCKET_NAME = Environment.getExternalStorageDirectory().toString() + "/DCIM/Camera";

我猜这就是您正在寻找的内容。您可以查看完整源代码 此处

You would use android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI to access images on the device instead of the SD card.

[EDIT]

Browsing the Android source, specifically the Gallery app, I stumbled across

public static final String CAMERA_IMAGE_BUCKET_NAME = Environment.getExternalStorageDirectory().toString() + "/DCIM/Camera";

Which I guess is what you are looking for. You can view the full source here

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