How to open an album in the Gallery app using intention

Assuming I know that the gallery has an album with a specific name X, what intention or broadcast can I do to open Album X using the Gallery app?

There are many examples showing how to select an image from the Gallery, but I do not see a description of how to perform the above.

Thanks.

+7
source share
1 answer

try it

Intent intent = new Intent(); intent.setType("image/*"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Main.this.startActivity(intent); 

the program will be a browser, all applications support with an image file

but the user can set the program by default

+1
source

All Articles