AssociationInfo
class AssociationInfo : Parcelable
Details for a specific "association" that has been established between an app and companion device.
An association gives an app the ability to interact with a companion device without needing to acquire broader runtime permissions. An association only exists after the user has confirmed that an app should have access to a companion device.
Summary
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public methods
describeContents
fun describeContents(): Int
equals
fun equals(other: Any?): Boolean
Parameters |
obj |
the reference object with which to compare. |
Return |
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getAssociatedDevice
fun getAssociatedDevice(): AssociatedDevice?
Companion device that was associated. Note that this field is not persisted across sessions. Device can be one of the following types:
Return |
AssociatedDevice? |
the companion device that was associated, or null if the device is self-managed or this association info was retrieved from persistent storage. |
getDeviceMacAddress
fun getDeviceMacAddress(): MacAddress?
Return |
MacAddress? |
the MAC address of the device. This value may be null . |
getDeviceProfile
fun getDeviceProfile(): String?
Return |
String? |
the companion device profile used when establishing this association, or null if no specific profile was used. |
getDisplayName
fun getDisplayName(): CharSequence?
Return |
CharSequence? |
the display name of the companion device (optionally) provided by the companion application. This value may be null . |
getId
fun getId(): Int
Return |
Int |
the unique ID of this association record. |
getSystemDataSyncFlags
fun getSystemDataSyncFlags(): Int
hashCode
fun hashCode(): Int
Return |
Int |
a hash code value for this object. |
isSelfManaged
fun isSelfManaged(): Boolean
Return |
Boolean |
whether the association is managed by the companion application it belongs to. |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Properties