使用Android的意图,选择多张图片,从照片库意图、多张、照片、图片

由网友(可爱中带点骚)分享简介:@see此 http://stackoverflow.com/a/15029515/185022 我真的想选择画廊图像,但我只找到了方法来选择一个单一的形象。I`m trying to select images from gallery, but i only found the way to select...

@see此 http://stackoverflow.com/a/15029515/185022

我真的想选择画廊图像,但我只找到了方法来选择一个单一的形象。

I`m trying to select images from gallery, but i only found the way to select a single image.

Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, 1);

有没有一种方法可以选择多个图片?

Is there a way to select multiple images?

推荐答案

创建一个自定义库相同的,如:Android自定义图像画廊复选框格可以选择多个

Create a custom gallery same like: Android custom image gallery with checkbox in grid to select multiple

阅读全文

相关推荐

最新文章