Hi,

I'm able to browse image in phone with this code :

String directory = "/sdcard/*";
Uri uri = Media.INTERNAL_CONTENT_URI.buildUpon().appendQueryParameter
("bucketId", getBucketId(directory)).build();
Intent intent = new Intent();
intent.setData(uri);
intent.setType("image/*");
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent, "Choose a
Viewer"), SELECT_IMAGE);
break;

But I don't see my gif images... Do you know why? is it possible?

Thank you,
Max

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to