【发布时间】:2012-03-11 21:11:01
【问题描述】:
我正在使用一个应用程序,该应用程序具有从 android 内置 Gallery/Camera 中选择多个图像的一种功能。
图库已使用以下代码成功打开。
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
但我只能从图库中选择一张图片。所以请建议我如何从内置图库中选择多个图像。
提前致谢!!!
【问题讨论】:
-
您是否注意到您的问题在 stackoverflow 上至少有 2 个重复项? (stackoverflow.com/questions/3058922/…) (stackoverflow.com/questions/4746661/…)
标签: android android-gallery image-uploading