• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to open default Gallery on samsung

jukiii

Lurker
I'm using this code for opening image gallery:

Intent pictures = new Intent(Intent.ACTION_VIEW,
android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
startActivity(Intent.createChooser(pictures,""));

However, on sansung devices I only got text "unable to find item". Works on other devices.

minsdk 8
 
Back
Top Bottom