标签: android image image-gallery
我想从图库中选择单个和多个图片,我尝试过以下代码
Intent intent = new Intent(); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); intent.setAction(Intent.ACTION_GET_CONTENT);
但它只允许多张图片,我无法选择单张图片。我想选择单张和多张图片。
答案 0 :(得分:1)
没有任何默认方式从Android Gallery中选择多个图像。你必须制作自己的媒体选择器。请参阅以下链接以获取选择多个媒体的源代码。 here