【发布时间】:2017-06-01 13:47:54
【问题描述】:
我想从图库中选择单张和多张图片,我已经尝试过以下代码
Intent intent = new Intent();
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setAction(Intent.ACTION_GET_CONTENT);
但它只允许多张图片,我不能选择单张。我想选择单张图片和多张图片。
【问题讨论】:
标签: android image image-gallery