Samuh,

thanks for the link.  I was able to get what I wanted with the
following code:


                Intent i = new Intent();
                i.setAction(Intent.ACTION_VIEW);
                i.setComponent(new ComponentName("com.android.gallery",
"com.android.camera.ImageGallery"));
                i.setData(Uri.parse("content://media/internal/images/media"));

                startActivity(i);

I guess I was trying to open the wrong area.  This will open the
gallery to view all the media on the sdcard.


Thanks




On Dec 10, 7:33 am, Samuh <[email protected]> wrote:
> Hi,
> this might help:
>
> http://android-developers.blogspot.com/2009/11/integrating-applicatio...

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to