Android cooliris gallery developer documentation
Posted
by mefesto
on Stack Overflow
See other posts from Stack Overflow
or by mefesto
Published on 2010-02-10T17:06:42Z
Indexed on
2010/04/18
22:03 UTC
Read the original article
Hit count: 441
Does anyone know how to integrate with the new Gallery3D app (cooliris android gallery)? I want to launch that app so it shows the thumbnails for only a specific folder.
For example, say my app downloads images from my server and stores them in a folder on the sd-card (/sdcard/myapp/image-cache/someid/*). I'd like to be able to do something like the following:
// within an activity
Uri uri = Uri.withAppendedPath(Media.EXTERNAL_CONTENT_URI, "myapp/image-cache/someid");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
Thanks.
© Stack Overflow or respective owner