How to get Multiple image uri from gallery with intent filter
问题 I want to get multiple image URI using intent filter without implements a whole custom filechooser. To get the URI of a single image I use private void openImage() { try { Intent i = new Intent(Intent.ACTION_GET_CONTENT); i.setType("image/*"); startActivityForResult(i, FILE_REQ_CODE); } catch (RuntimeException e) { } } protected void onActivityResult(int requestCode, int resultCode, Intent intentData) { try { Uri tmp = intentData.getData(); filePath = getRealFilePathFromURI(tmp); super