Do you mean:
Intent intent = new Intent(); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent,"Select Picture"), 1);
Note. The EXTRA_ALLOW_MULTIPLE parameter is only available in Android API 18 and above.
This link talks about creating a custom multi-select image picker.
source share