I am using android java. And I am trying to let user to upload photos to my application at most 5 images. I am using this
Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"), 
SELECT_PICTURE);
with On Activity Result.