I want to use the user to select an image using the default gallery app. I don't want him to choose between apps, I want the default app to open.
I use this code
intent = new Intent();
                 intent.setType("image/*");
                 intent.setAction(Intent.ACTION_GET_CONTENT);
                 startActivityForResult(intent, SELECT_PICTURE_REQUEST_CODE);
but it keeps showing me list of apps to choose from. Can I force it to go default ( Gallery app) all the time?
Thank you