public static final class ContactsContract.DisplayPhoto extends Object
Usage example:
ContactsContract.ContactsColumns.PHOTO_FILE_ID
)
public InputStream openDisplayPhoto(long photoFileId) { Uri displayPhotoUri = ContentUris.withAppendedId(DisplayPhoto.CONTENT_URI, photoKey); try { AssetFileDescriptor fd = getContentResolver().openAssetFileDescriptor( displayPhotoUri, "r"); return fd.createInputStream(); } catch (IOException e) { return null; } }
Modifier and Type | Field and Description |
---|---|
static Uri |
CONTENT_MAX_DIMENSIONS_URI
This URI allows the caller to query for the maximum dimensions of a display photo
or thumbnail.
|
static Uri |
CONTENT_URI
The content:// style URI for this class, which allows access to full-size photos,
given a key.
|
static String |
DISPLAY_MAX_DIM
Queries to
CONTENT_MAX_DIMENSIONS_URI will
contain this column, populated with the maximum height and width (in pixels)
that will be stored for a display photo. |
static String |
THUMBNAIL_MAX_DIM
Queries to
CONTENT_MAX_DIMENSIONS_URI will
contain this column, populated with the height and width (in pixels) for photo
thumbnails. |
public static final Uri CONTENT_URI
public static final Uri CONTENT_MAX_DIMENSIONS_URI
public static final String DISPLAY_MAX_DIM
CONTENT_MAX_DIMENSIONS_URI
will
contain this column, populated with the maximum height and width (in pixels)
that will be stored for a display photo. Larger photos will be down-sized to
fit within a square of this many pixels.public static final String THUMBNAIL_MAX_DIM
CONTENT_MAX_DIMENSIONS_URI
will
contain this column, populated with the height and width (in pixels) for photo
thumbnails.