有什么方法可以使用路径查找图像吗? MediaStore.Images.Thumbnails (Android)
我使用 MediaStore.Images.Thumbnails 来显示用户拥有的图像。但我无法通过其路径获取图像。 有什么方法可以使用路径查找图像吗?
String [] proj={MediaStore.Images.Thumbnails._ID, MediaStore.Images.Thumbnails.IMAGE_ID, MediaStore.Images.Media.DATA};
String selection = MediaStore.Images.Media.DATA + " like '%path%'"; //this doesn't work
cursor = managedQuery( MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
proj, // Which columns to return
selection, // WHERE clause;
null,
null); // Order-by clause
此致!
I'm using MediaStore.Images.Thumbnails
in order to show the images the user have. But i'm not able to get an image through its path.
Is there any way to look for an image using the path?
String [] proj={MediaStore.Images.Thumbnails._ID, MediaStore.Images.Thumbnails.IMAGE_ID, MediaStore.Images.Media.DATA};
String selection = MediaStore.Images.Media.DATA + " like '%path%'"; //this doesn't work
cursor = managedQuery( MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
proj, // Which columns to return
selection, // WHERE clause;
null,
null); // Order-by clause
Best regards!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
嗨,
BR,
杰特
EDITED
Hi,
BR,
Jett