Android,选择图像
是否有某种可能的方法从图片文件夹中选取图像?
Is there some possible way of picking images from picture folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有某种可能的方法从图片文件夹中选取图像?
Is there some possible way of picking images from picture folder?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
基本上,您调用图库意图并期望使用
onActivityForResult
获得结果,请看这里:
如何从图库(SD 卡)中为我的应用程序选择图像?
在 SO 中进一步搜索会产生一个完整的解决方案:
从 Android 的内置图库应用中获取/选取图像以编程方式
Basically you call the gallery intent and expect a result with
onActivityForResult
Have a look here:
How to pick an image from gallery (SD Card) for my app?
Further searching in SO yields this, a complete solution:
Get/pick an image from Android's built-in Gallery app programmatically