Added in API level 36
    ActiveProcessingPicture
class ActiveProcessingPicture : Parcelable
| kotlin.Any | |
| ↳ | android.media.quality.ActiveProcessingPicture | 
Active picture represents an image or video undergoing picture processing which uses a picture profile. The picture profile is used to configure the picture processing parameters.
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| ActiveProcessingPicture(id: Int, profileId: String) | |
| Public methods | |
|---|---|
| Int | |
| Int | getId()An ID that uniquely identifies the active content. | 
| String | The ID of the picture profile used to configure the content. | 
| Unit | writeToParcel(dest: Parcel, flags: Int) | 
| Properties | |
|---|---|
| static Parcelable.Creator<ActiveProcessingPicture!> | |
Public constructors
Public methods
describeContents
Added in API level 36
      fun describeContents(): Int
| Return | |
|---|---|
| Int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getId
Added in API level 36
      fun getId(): Int
An ID that uniquely identifies the active content.
The ID is assigned by the system to distinguish different active contents.
getProfileId
Added in API level 36
      fun getProfileId(): String
The ID of the picture profile used to configure the content.
writeToParcel
Added in API level 36
      fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
| Parameters | |
|---|---|
| dest | Parcel: The Parcel in which the object should be written. This value cannot be null. | 
| flags | Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
