如何从SD卡文件夹的子文件夹中获取图像?
以下代码用于从特定文件夹获取图像,但如何获取 sdcard 文件夹的子文件夹图像。
Cursor actualimagecursor = managedQuery(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, proj,
MediaStore.Images.Media.DATA + " like ? ",
new String[] { "%unzipped%" }, null);
抱歉英语沟通不好。
Following code is used to get images from particular folder but how to get sub folder's images of sdcard's folder.
Cursor actualimagecursor = managedQuery(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, proj,
MediaStore.Images.Media.DATA + " like ? ",
new String[] { "%unzipped%" }, null);
Sorry for bad English communication.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用以下代码
Try with the following code
尝试下面的代码:在图像文件夹中包含示例子文件夹。
Try this code below : In images folder contains Sample sub folder.
我想给你一个建议,看看你是否想观看某个特定的目录,假设/sdcard/。然后使用 FileObserver 类并使其对每个子目录递归。它肯定会对您有所帮助。尝试一下。创建 stack 或 ArrayList,将所有目录存储在 /sdcard/ 中,然后开始监视所有目录。
I wanna give you one suggestion, See if you want to watch a particular Directory suppose /sdcard/. Then Use FileObserver class and make it recursive for every subdirectory. It will help you for sure. Try it.Make stack or ArrayList which will store all the directories in /sdcard/ and than startWatching for all directories.