如何仅从 DCIM 目录获取图像选择器
我必须在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的。
如有必要,您可以实现自己的画廊,该画廊仅从
和 中挑选图像
No, it is not possible.
If necessary, you can implement your own gallery, that will pick images only from
and
您可以使用 android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI 来访问设备上的图像而不是 SD 卡。
[编辑]
浏览 Android 源代码,特别是 Gallery 应用程序,我偶然发现了
我猜这就是您正在寻找的内容。您可以查看完整源代码 此处
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
Which I guess is what you are looking for. You can view the full source here