Android.OS.Message: Method Members

The methods of Android.OS.Message are listed below. For a list of all members, see the Message Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

CopyFrom(Message)
Make this message like o.
DescribeContents() : int
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
static
Obtain() : Message
Return a new Message instance from the global pool.
static
Obtain(Handler) : Message
Same as Message.Obtain, but sets the value for the target member on the Message returned.
static
Obtain(Message) : Message
Same as Message.Obtain, but copies the values of an existing message (including its target) into the new one.
static
Obtain(Handler, Java.Lang.IRunnable) : Message
Same as Message.Obtain(Handler), but assigns a callback Runnable on the Message that is returned.
static
Obtain(Handler, Action) : Message
Documentation for this section has not yet been entered.
static
Obtain(Handler, int) : Message
Same as Message.Obtain, but sets the values for both target and what members on the Message.
static
Obtain(Handler, int, Java.Lang.Object) : Message
Same as Message.Obtain, but sets the values of the target, what, and obj members.
static
Obtain(Handler, int, int, int) : Message
Same as Message.Obtain, but sets the values of the target, what, arg1, and arg2 members.
static
Obtain(Handler, int, int, int, Java.Lang.Object) : Message
Same as Message.Obtain, but sets the values of the target, what, arg1, arg2, and obj members.
PeekData() : Bundle
Like getData(), but does not lazily create the Bundle.
Recycle()
Return a Message instance to the global pool.
SendToTarget()
Sends this Message to the Handler specified by Message.Target.
WriteToParcel(Parcel, ParcelableWriteFlags)
Flatten this object in to a Parcel.