public static class

MediaStore.Images.Thumbnails

extends Object
implements BaseColumns
java.lang.Object
   ↳ android.provider.MediaStore.Images.Thumbnails

Summary

Constants
String DATA The data stream for the thumbnail

Type: DATA STREAM

String DEFAULT_SORT_ORDER The default sort order for this table
Uri EXTERNAL_CONTENT_URI The content:// style URI for the "primary" external storage volume.
int FULL_SCREEN_KIND
String HEIGHT The height of the thumbnail

Type: INTEGER (long)

String IMAGE_ID The original image for the thumbnal

Type: INTEGER (ID from Images table)

Uri INTERNAL_CONTENT_URI The content:// style URI for the internal storage.
String KIND The kind of the thumbnail

Type: INTEGER (One of the values below)

int MICRO_KIND
int MINI_KIND
String WIDTH The width of the thumbnal

Type: INTEGER (long)

[Expand]
Inherited Constants
From interface android.provider.BaseColumns
Public Constructors
MediaStore.Images.Thumbnails()
Public Methods
static Uri getContentUri(String volumeName)
Get the content:// style URI for the image media table on the given volume.
final static Cursor query(ContentResolver cr, Uri uri, String[] projection)
final static Cursor queryMiniThumbnail(ContentResolver cr, long origId, int kind, String[] projection)
final static Cursor queryMiniThumbnails(ContentResolver cr, Uri uri, int kind, String[] projection)
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String DATA

The data stream for the thumbnail

Type: DATA STREAM

Constant Value: "_data"

public static final String DEFAULT_SORT_ORDER

The default sort order for this table

Constant Value: "image_id ASC"

public static final Uri EXTERNAL_CONTENT_URI

The content:// style URI for the "primary" external storage volume.

public static final int FULL_SCREEN_KIND

Constant Value: 2 (0x00000002)

public static final String HEIGHT

The height of the thumbnail

Type: INTEGER (long)

Constant Value: "height"

public static final String IMAGE_ID

The original image for the thumbnal

Type: INTEGER (ID from Images table)

Constant Value: "image_id"

public static final Uri INTERNAL_CONTENT_URI

The content:// style URI for the internal storage.

public static final String KIND

The kind of the thumbnail

Type: INTEGER (One of the values below)

Constant Value: "kind"

public static final int MICRO_KIND

Constant Value: 3 (0x00000003)

public static final int MINI_KIND

Constant Value: 1 (0x00000001)

public static final String WIDTH

The width of the thumbnal

Type: INTEGER (long)

Constant Value: "width"

Public Constructors

public MediaStore.Images.Thumbnails ()

Public Methods

public static Uri getContentUri (String volumeName)

Get the content:// style URI for the image media table on the given volume.

Parameters
volumeName the name of the volume to get the URI for
Returns
  • the URI to the image media table on the given volume

public static final Cursor query (ContentResolver cr, Uri uri, String[] projection)

public static final Cursor queryMiniThumbnail (ContentResolver cr, long origId, int kind, String[] projection)

public static final Cursor queryMiniThumbnails (ContentResolver cr, Uri uri, int kind, String[] projection)