gpt4 book ai didi

android - Android图库中的最大图像选择限制

转载 作者:太空狗 更新时间:2023-10-29 16:33:39 24 4
gpt4 key购买 nike

我正在尝试从我的应用程序内部的 Gallery 内置应用程序中获取图像的 Uri。

因此,我使用了下面的 Intent,但它选择了更多图像。

我想设置限制。小于 3

@Override
public void onClick(View v) {
Intent intent = new Intent( );
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
startActivityForResult(Intent.createChooser(intent, "select images"), PICK_IMAGE_MULTIPLE);
}

我该如何解决这个问题。

你有什么建议吗?

最佳答案

不幸的是,如 http://developer.android.com/reference/android/content/Intent.html#EXTRA_ALLOW_MULTIPLE 所述, 这是不可能的。

This is a boolean extra; the default is false. If true, an implementation is allowed to present the user with a UI where they can pick multiple items that are all returned to the caller.

您必须手动检查返回的数据,看它是否超过 3 个项目,如果是,则显示 Toast让他们再试一次。

关于android - Android图库中的最大图像选择限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33604951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com