You mean the Pictures app?

If you want to launch the app to browse through the images and fiddle
with them, if you examine the log when you launch it manually, an
Activity is started with an Intent like:

new Intent(Intent.ACTION_VIEW, Uri.parse(
  "content://media/internal/images/media"))

If you want to more generically launch whatever the current image
picker is (and hope to get something back), you can use:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");

--~--~---------~--~----~------------~-------~--~----~
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