Stay organized with collections
Save and categorize content based on your preferences.
DisplayPhoto
class DisplayPhoto
A sub-directory of a single raw contact that represents its primary display photo. To access this directory append RawContacts.DisplayPhoto#CONTENT_DIRECTORY
to the raw contact URI. The resulting URI represents an image file, and should be interacted with using ContentResolver.openAssetFileDescriptor.
Note that this sub-directory also supports opening the photo as an asset file in write mode. Callers can create or replace the primary photo associated with this raw contact by opening the asset file and writing the full-size photo contents into it. When the file is closed, the image will be parsed, sized down if necessary for the full-size display photo and thumbnail dimensions, and stored.
Usage example:
public void writeDisplayPhoto(long rawContactId, byte[] photo) {
Uri rawContactPhotoUri = Uri.withAppendedPath(
ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
RawContacts.DisplayPhoto.CONTENT_DIRECTORY);
try {
AssetFileDescriptor fd =
getContentResolver().openAssetFileDescriptor(rawContactPhotoUri, "rw");
OutputStream os = fd.createOutputStream();
os.write(photo);
os.close();
fd.close();
} catch (IOException e) {
// Handle error cases.
}
}
Summary
Constants |
static String |
The directory twig for this sub-table
|
Constants
CONTENT_DIRECTORY
static val CONTENT_DIRECTORY: String
The directory twig for this sub-table
Value: "display_photo"
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# ContactsContract.RawContacts.DisplayPhoto\n\nAdded in [API level 14](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nDisplayPhoto\n============\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/provider/ContactsContract.RawContacts.DisplayPhoto \"View this page in Java\") \n\n```\nclass DisplayPhoto\n```\n\n|---|-----------------------------------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [android.provider.ContactsContract.RawContacts.DisplayPhoto](#) |\n\nA sub-directory of a single raw contact that represents its primary display photo. To access this directory append [RawContacts.DisplayPhoto#CONTENT_DIRECTORY](#CONTENT_DIRECTORY:kotlin.String) to the raw contact URI. The resulting URI represents an image file, and should be interacted with using ContentResolver.openAssetFileDescriptor.\n\nNote that this sub-directory also supports opening the photo as an asset file in write mode. Callers can create or replace the primary photo associated with this raw contact by opening the asset file and writing the full-size photo contents into it. When the file is closed, the image will be parsed, sized down if necessary for the full-size display photo and thumbnail dimensions, and stored.\n\nUsage example: \n\n```kotlin\npublic void writeDisplayPhoto(long rawContactId, byte[] photo) {\n Uri rawContactPhotoUri = Uri.withAppendedPath(\n ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),\n RawContacts.DisplayPhoto.CONTENT_DIRECTORY);\n try {\n AssetFileDescriptor fd =\n getContentResolver().openAssetFileDescriptor(rawContactPhotoUri, \"rw\");\n OutputStream os = fd.createOutputStream();\n os.write(photo);\n os.close();\n fd.close();\n } catch (IOException e) {\n // Handle error cases.\n }\n }\n \n```\n\n\u003cbr /\u003e\n\nSummary\n-------\n\n| Constants ||\n|-----------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|\n| static [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | [CONTENT_DIRECTORY](#CONTENT_DIRECTORY:kotlin.String) The directory twig for this sub-table |\n\nConstants\n---------\n\n### CONTENT_DIRECTORY\n\nAdded in [API level 14](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nstatic val CONTENT_DIRECTORY: String\n```\n\nThe directory twig for this sub-table \n\n Value: \"display_photo\""]]