I'm using the following code to open an image picker on Android.
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
fragment.startActivityForResult(Intent.createChooser(intent, "Gallery"), Constants.RetCodes.SELECT_PIC);
This opens to the "Recent" directory which NEVER contains any images. Every time I run the app, I have to open the hamburger menu in the upper left and choose "Photos", then choose "Photos" again on the screen after that in order to actually get to any pictures.
How can I force the picker to just open in "Photos|Photos" right away instead of going to "Recent", which is completely useless?