I'm trying to display only gallery and File manager in the chooser intent
So, i tried something like below
Intent intent = new Intent();
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY,true);
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), RESULT_LOAD_IMAGE);
But along with gallery and File Explorer it is showing other apps too. It is also showing google drive
So, i decided to choose only first two intents and remove others.
How to achieve this ?