I am using the following code to choose a picture from gallery.
Intent intent_gallery = new Intent();
intent_gallery.setType("image/*");
intent_gallery.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent_gallery, 1);
However I don't need it to view other applications for choosing pictures. I want it to directely open default gallery instead of showing me other applications for choosing pictures.