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 <samuh.va...@gmail.com> 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 android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to