1

I am working with one application that have one functionality to select multiple images from android inbuilt Gallery/Camera.

Gallery is open successfully using below code.

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);

but I am able to select only One image from Gallery. so please suggest me how to select multiple images from inbuilt gallery and save to server.

Bekzod Buranov
  • 49
  • 1
  • 10

1 Answers1

1

Here is how to select multiple item fro a List view. Here is how to list the content of a directory.

So List the content, display it. Done, so simple.

Community
  • 1
  • 1
matheszabi
  • 594
  • 5
  • 16