获取多张图像的意图
是否有请求获取多张图像的意图?
我们知道 Intent.ACTION_PICK
或 Intent.ACTION_GET_CONTENT
用于获取单个图像。此外,我们的应用程序注册为 android.intent.action.SEND
和 android.intent.action.SEND_MULTIPLE
的 IntentFilter
但是,我们希望我们的应用程序能够使用类似 Gallery 的应用程序选择多个图像。有这样的意图吗?
Is there an intent requesting to get multiple images?
We are aware of Intent.ACTION_PICK
or Intent.ACTION_GET_CONTENT
for getting a single image. Also our app registers as IntentFilter for android.intent.action.SEND
and android.intent.action.SEND_MULTIPLE
However, we would like our app to make use of Gallery like applications to pick multiple images. Is there an intent for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还想要 Intent 在 android 中选择多个图像,但我失败了。我遇到了带有自定义主题的自定义图库。
看看这里 MultipleImagePick 来选择单个图像和选择多个图像,您也可以根据您的需要更改主题应用程序。
已更新
谢谢@sunshine 指导我限制最大图像选择。
I also wanted Intent for picking multiple images in android but I failed.I came across custom gallery with custom theme.
Look at here MultipleImagePick to pick single image and to pick multiple image and also you can change theme according to your app.
Updated
Thanks @sunshine for guiding me to limit maximum images selection.
您需要将其添加到您的清单中:
我发现了这篇帖子为了非常有帮助,它还解释了如何检索图像。
You need to add this to your manifest:
I found this post to be extremely helpful, it explains how to also retrieve the images.