Android open gallery from folder
问题 I want to show a photo in android gallery, and be able to slide throw the others photos on that folder. Intent intent = new Intent(Intent.ACTION_VIEW); File f = new File(path); intent.setDataAndType(Uri.parse("file://" + f.getAbsolutePath()), "image/*"); mContext.startActivity(intent); thats how i am doing it now, but wont let me slide throw the rest of the images in the folder. i tried: How to open one particular folder from gallery in android? Built-in gallery in specific folder Gallery