如何获取 Android 中特定图像文件夹的厨房缩略图?
我在 SD 卡的图片文件夹中保存了一些图像。我想直接访问我的文件夹中的这些图像。
我使用下面的代码直接选择图库图像。
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setDataAndType(Uri.parse("file:///sdcard/Pictures/"), "image/*");
startActivityForResult(intent, 1);
上面的代码是从SD卡获取所有图像。但我只需要我的图片文件夹。我也尝试了Intent.ACTION_GET_CONTENT,结果相同。
请任何人纠正我...
谢谢。
I have some saved images at Pictures folder in SD Card. I want to access those images of my folder directly.
I have used the below code to pick Gallery images directly.
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setDataAndType(Uri.parse("file:///sdcard/Pictures/"), "image/*");
startActivityForResult(intent, 1);
The above code is getting all images from the SD Card. But i need only of my Pictures folder. I also tried Intent.ACTION_GET_CONTENT, the same result.
Please anybody correct me...
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我用来从 SD 卡中选择图片的代码,
请注意,这会加载根文件夹。
一旦选择了照片,就会调用 onActivityResult 方法并获取图像。
get Path 方法
最后获取 Bitmap
size 变量允许图像按一个因子缩放。如果您不想扩展,只需删除选项参数即可。
我不知道如何告诉它从根目录以外的另一个文件夹中选择。
这也是一篇有用的帖子 获取/选择图像Android 的内置图库应用程序以编程方式
This is the code I use to select a picture from the sd card
Note this loads the root folder.
Once a photo is selected the onActivityResult method is called an the image can be gotten.
The get Path method
And finally to get the Bitmap
The size variable allows the scaling of the image by a factor. If you don't wish to scale simply remove the options parameter.
I'm not sure how to tell it to pick from another folder other than the root.
Here is a helpful post too Get/pick an image from Android's built-in Gallery app programmatically