Abhi S
Abhi S

Reputation: 490

How to open built-in gallery app on click button

From my app on click the button open gallery app. for example, MI's phone has its own gallery app, Samsung, Oneplus, etc. so how can I open the built-in gallery app?

note I don't want to take images from the gallery. just only open like chrome, camera, map, etc.

Upvotes: 0

Views: 947

Answers (1)

Android Geek
Android Geek

Reputation: 9225

Add following code to open Gallery app: startActivity(Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,Intent.CATEGORY_APP_GALLERY))

For more info related to CATEGORY_APP_GALLERY

Upvotes: 1

Related Questions