maximum image selection limit from gallery Android
问题 I am trying to get image's Uri in the Gallery built-in app from inside my application. so, I was using the Intent below, but it selected many more image. i want to set limitation. less than 3 @Override public void onClick(View v) { Intent intent = new Intent( ); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); startActivityForResult(Intent.createChooser(intent, "select images"), PICK_IMAGE_MULTIPLE); } how do i fix