从Android中的Gallery中选择多个图像,然后使用PHP上传到Server

时间:2017-02-10 08:06:15

标签: php android image-uploading

我正在使用一个具有一个功能的应用程序来从Android内置的图库/相机中选择多个图像。

  

使用以下代码成功打开了图库。

Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);

但我只能从图库中选择一张图片。所以请建议我如何从内置的库中选择多个图像并保存到服务器。

1 个答案:

答案 0 :(得分:1)

Here是如何从列表视图中选择多个项目。 Here是如何列出目录的内容。

所以列出内容,显示它。完成,这么简单。