java.lang.Object | |
↳ | android.telecom.ConnectionRequest |
Simple data container encapsulating a request to some entity to
create a new Connection
.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
The account which should be used to place the call.
| |||||||||||
The handle (e.g., phone number) to which the
Connection is to connect.
| |||||||||||
Application-specific extra data.
| |||||||||||
Describes the video states supported by the client requesting the connection.
| |||||||||||
Returns a string containing a concise, human-readable description of this
object.
| |||||||||||
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
accountHandle | The accountHandle which should be used to place the call. |
---|---|
handle | The handle (e.g., phone number) to which the Connection is to connect. |
extras | Application-specific extra data. |
accountHandle | The accountHandle which should be used to place the call. |
---|---|
handle | The handle (e.g., phone number) to which the Connection is to connect. |
extras | Application-specific extra data. |
videoState | Determines the video state for the connection. |
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
The account which should be used to place the call.
The handle (e.g., phone number) to which the Connection
is to connect.
Application-specific extra data. Used for passing back information from an incoming
call Intent
, and for any proprietary extensions arranged between a client
and servant ConnectionService
which agree on a vocabulary for such data.
Describes the video states supported by the client requesting the connection.
Valid values: STATE_AUDIO_ONLY
,
STATE_BIDIRECTIONAL
,
STATE_TX_ENABLED
,
STATE_RX_ENABLED
.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.
Flatten this object in to a Parcel.
destination | The Parcel in which the object should be written. |
---|---|
flags | Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|