CallLog.Calls.ComposerPhotoUri Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A reference to the picture that was sent via call composer.
[Android.Runtime.Register("COMPOSER_PHOTO_URI", ApiSince=31)]
public const string ComposerPhotoUri;
[<Android.Runtime.Register("COMPOSER_PHOTO_URI", ApiSince=31)>]
val mutable ComposerPhotoUri : string
Field Value
- Attributes
Remarks
A reference to the picture that was sent via call composer.
The string contained in this field should be converted to an Uri
via Uri#parse(String)
, then passed to ContentResolver#openFileDescriptor
in order to obtain a file descriptor to access the picture data.
The user may choose to delete the picture associated with a call independently of the call log entry, in which case ContentResolver#openFileDescriptor
may throw a FileNotFoundException
.
Note that pictures sent or received via call composer will not be included in any backups of the call log.
Type: TEXT
Java documentation for android.provider.CallLog.Calls.COMPOSER_PHOTO_URI
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.