I am using the following code to open Gallery for image selection
private void galleryIntent() {
Intent intent = new Intent(Intent.ACTION_PICK,
MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("image/*");
startActivityForResult(Intent.createChooser(intent, getResources().getString(R.string.select_file)), SELECT_FILE);
All is working fine but for the first time it gives a popup with two options to select:
Can I make my app such that it always open Gallery Directly without any such popup?
Thanks