How can I change my code to put an option in my application which give the user the option to choose either a single for a couple of photos to upload in their profile? At the moment I'm using the following code ....... ,but it doesn't allow the user to choose a single image and its limits is at least 2 photos
So how should I change my code?
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 images"), CODE_MULTIPLE_IMG_GALLERY);