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

Public methods
Int

Int

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

ActiveProcessingPicture

ActiveProcessingPicture(
    id: Int,
    profileId: String)

Public methods

describeContents

fun describeContents(): Int
Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

getId

fun getId(): Int

An ID that uniquely identifies the active content.

The ID is assigned by the system to distinguish different active contents.

getProfileId

fun getProfileId(): String

The ID of the picture profile used to configure the content.

writeToParcel

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 either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

static val CREATOR: Parcelable.Creator<ActiveProcessingPicture!>