I'm looking for a way to open an image with Gallery in Android. So here is what I'm doing: The user click an an image so I launch an intent with its "path":
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, mimeType);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
And gallery opens on the specific image.
My problem is that I can not slide to another picture with Gallery. I have to go back to my application and select the next picture in order to view it.
I already took a look at this: Built-in gallery in specific folder, but it will launch the folder and not the specific picture.
Thank you