android 单选图像选择器

发布于 2024-10-26 12:35:49 字数 297 浏览 2 评论 0原文

我想使用图库图像选择器来选择单个图像。我做了类似的事情,

Intent intent = new Intent(Intent.ACTION_PICK, Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, 0);

这本质上是有效的,但是如果用户在选择器中长按,他们就会进入多选模式。首先,我不希望他们选择多个图像,但即使我这样做了,他们也会被卡住,因为在此模式下无法“提交”选择。

如果我可以限制为单一选择,或者能够正确恢复多值选择,我会很高兴。

I'd like to use the gallery image picker to select a single image. I do something like,

Intent intent = new Intent(Intent.ACTION_PICK, Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, 0);

this works essentially, but if the user long-presses in the chooser, they enter multi select mode. first, I don't want them to select multiple images, but even if I did, they are stuck, because there's no way to "submit" the selection when in this mode.

I'd be happy if i could limit to single selection, or be able to get the multi-valued selection back correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟稳重的好男人 2024-11-02 12:35:49

看来这是不可能的。我们最终构建了自己的图像选择器。

Looks like this is not possible. We ended up building our own image picker.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文