I am launching an intent to access only images and videos to use in my Android application using the below intent as follows.
public static final int IMAGE_PICK = 1;
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Any"), IMAGE_PICK);
Using the above I am able to see the images in IO File Manager and also gallery, apart from this I am also seeing Contacts API. But here I don't want to display Contacts API. Any Suggestions.
Thanks&Regards, Venkat.