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
 
Top