I wish to open android default gallery on specific folder. The folder contains images and videos. I can open the galley with:
Intent i=new Intent(Intent.ACTION_PICK);
i.setType("media/*");
startActivity(i);
but how to do it in specific folder? I do not wish to read back the image or video viewed, just open it.