如何从图库中挑选单张和多张图片?

How to pick single and multiple images from gallery?

我想从图库中选择单张和多张图片,我试过下面的代码

Intent intent = new Intent();
        intent.setType("image/*");
        intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
        intent.setAction(Intent.ACTION_GET_CONTENT);

但它只允许多张图片,我不能select单张。我想选择单张和多张图片。

没有任何默认方法可以从 android 图库中选择多张图片。您必须为此制作自己的媒体选择器。请参考以下 link 以获取选择多种媒体的源代码。 here