|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectandroid.app.PendingIntent
public final class PendingIntent
A description of an Intent and target action to perform with it. Instances
of this class are created with getActivity(android.content.Context, int, android.content.Intent, int),
getBroadcast(android.content.Context, int, android.content.Intent, int), getService(android.content.Context, int, android.content.Intent, int); the returned object can be
handed to other applications so that they can perform the action you
described on your behalf at a later time.
By giving a PendingIntent to another application, you are granting it the right to perform the operation you have specified as if the other application was yourself (with the same permissions and identity). As such, you should be careful about how you build the PendingIntent: often, for example, the base Intent you supply will have the component name explicitly set to one of your own components, to ensure it is ultimately sent there and nowhere else.
A PendingIntent itself is simply a reference to a token maintained by
the system describing the original data used to retrieve it. This means
that, even if its owning application's process is killed, the
PendingIntent itself will remain usable from other processes that
have been given it. If the creating application later re-retrieves the
same kind of PendingIntent (same operation, same Intent action, data,
categories, and components, and same flags), it will receive a PendingIntent
representing the same token if that is still valid, and can thus call
cancel() to remove it.
| Nested Class Summary | |
|---|---|
static class |
PendingIntent.CanceledException
Exception thrown when trying to send through a PendingIntent that has been canceled or is otherwise no longer able to execute the request. |
static interface |
PendingIntent.OnFinished
Callback interface for discovering when a send operation has completed. |
| Nested classes/interfaces inherited from interface android.os.Parcelable |
|---|
Parcelable.Creator<T> |
| Fields inherited from interface android.os.Parcelable |
|---|
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE |
| Constructor Summary | |
|---|---|
PendingIntent(IBinder target)
|
|
PendingIntent(IIntentSender target)
|
|
| Method Summary | |
|---|---|
void |
cancel()
Cancel a currently active PendingIntent. |
int |
describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation. |
boolean |
equals(Object otherObj)
Comparison operator on two PendingIntent objects, such that true is returned then they both represent the same operation from the same package. |
static PendingIntent |
getActivity(Context context,
int requestCode,
Intent intent,
int flags)
Retrieve a PendingIntent that will start a new activity, like calling Context.startActivity(Intent). |
static PendingIntent |
getBroadcast(Context context,
int requestCode,
Intent intent,
int flags)
Retrieve a PendingIntent that will perform a broadcast, like calling Context.sendBroadcast(). |
static PendingIntent |
getService(Context context,
int requestCode,
Intent intent,
int flags)
Retrieve a PendingIntent that will start a service, like calling Context.startService(). |
(package private) IIntentSender |
getTarget()
|
String |
getTargetPackage()
Return the package name of the application that created this PendingIntent, that is the identity under which you will actually be sending the Intent. |
int |
hashCode()
Returns an integer hash code for the receiver. |
static PendingIntent |
readPendingIntentOrNullFromParcel(Parcel in)
Convenience function for reading either a Messenger or null pointer from a Parcel. |
void |
send()
Perform the operation associated with this PendingIntent. |
void |
send(Context context,
int code,
Intent intent)
Perform the operation associated with this PendingIntent, allowing the caller to specify information about the Intent to use. |
void |
send(Context context,
int code,
Intent intent,
PendingIntent.OnFinished onFinished,
Handler handler)
Perform the operation associated with this PendingIntent, allowing the caller to specify information about the Intent to use and be notified when the send has completed. |
void |
send(int code)
Perform the operation associated with this PendingIntent. |
void |
send(int code,
PendingIntent.OnFinished onFinished,
Handler handler)
Perform the operation associated with this PendingIntent, allowing the caller to be notified when the send has completed. |
static void |
writePendingIntentOrNullToParcel(PendingIntent sender,
Parcel out)
Convenience function for writing either a PendingIntent or null pointer to a Parcel. |
void |
writeToParcel(Parcel out,
int flags)
Flatten this object in to a Parcel. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int FLAG_ONE_SHOT
getActivity(android.content.Context, int, android.content.Intent, int), getBroadcast(android.content.Context, int, android.content.Intent, int), and
getService(android.content.Context, int, android.content.Intent, int): this
PendingIntent can only be used once. If set, after
send() is called on it, it will be automatically
canceled for you and any future attempt to send through it will fail.
public static final int FLAG_NO_CREATE
getActivity(android.content.Context, int, android.content.Intent, int), getBroadcast(android.content.Context, int, android.content.Intent, int), and
getService(android.content.Context, int, android.content.Intent, int): if the described PendingIntent does not already
exist, then simply return null instead of creating it.
public static final int FLAG_CANCEL_CURRENT
getActivity(android.content.Context, int, android.content.Intent, int), getBroadcast(android.content.Context, int, android.content.Intent, int), and
getService(android.content.Context, int, android.content.Intent, int): if the described PendingIntent already exists,
the current one is canceled before generating a new one. You can use
this to retrieve a new PendingIntent when you are only changing the
extra data in the Intent.
public static final Parcelable.Creator<PendingIntent> CREATOR
| Constructor Detail |
|---|
PendingIntent(IIntentSender target)
PendingIntent(IBinder target)
| Method Detail |
|---|
public static PendingIntent getActivity(Context context,
int requestCode,
Intent intent,
int flags)
Context.startActivity(Intent).
Note that the activity will be started outside of the context of an
existing activity, so you must use the Intent.FLAG_ACTIVITY_NEW_TASK launch flag in the Intent.
context - The Context in which this PendingIntent should start
the activity.requestCode - Private request code for the sender (currently
not used).intent - Intent of the activity to be launched.flags - May be FLAG_ONE_SHOT, FLAG_NO_CREATE,
FLAG_CANCEL_CURRENT, or any of the flags as supported by
Intent.fillIn() to control which unspecified parts
of the intent that can be supplied when the actual send happens.
FLAG_NO_CREATE has been
supplied.
public static PendingIntent getBroadcast(Context context,
int requestCode,
Intent intent,
int flags)
Context.sendBroadcast().
context - The Context in which this PendingIntent should perform
the broadcast.requestCode - Private request code for the sender (currently
not used).intent - The Intent to be broadcast.flags - May be FLAG_ONE_SHOT, FLAG_NO_CREATE,
FLAG_CANCEL_CURRENT, or any of the flags as supported by
Intent.fillIn() to control which unspecified parts
of the intent that can be supplied when the actual send happens.
FLAG_NO_CREATE has been
supplied.
public static PendingIntent getService(Context context,
int requestCode,
Intent intent,
int flags)
Context.startService(). The start
arguments given to the service will come from the extras of the Intent.
context - The Context in which this PendingIntent should start
the service.requestCode - Private request code for the sender (currently
not used).intent - An Intent describing the service to be started.flags - May be FLAG_ONE_SHOT, FLAG_NO_CREATE,
FLAG_CANCEL_CURRENT, or any of the flags as supported by
Intent.fillIn() to control which unspecified parts
of the intent that can be supplied when the actual send happens.
FLAG_NO_CREATE has been
supplied.public void cancel()
public void send()
throws PendingIntent.CanceledException
PendingIntent.CanceledException - Throws CanceledException if the PendingIntent
is no longer allowing more intents to be sent through it.send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
public void send(int code)
throws PendingIntent.CanceledException
code - Result code to supply back to the PendingIntent's target.
PendingIntent.CanceledException - Throws CanceledException if the PendingIntent
is no longer allowing more intents to be sent through it.send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
public void send(Context context,
int code,
Intent intent)
throws PendingIntent.CanceledException
context - The Context of the caller.code - Result code to supply back to the PendingIntent's target.intent - Additional Intent data. See Intent.fillIn() for information on how this is applied to the
original Intent.
PendingIntent.CanceledException - Throws CanceledException if the PendingIntent
is no longer allowing more intents to be sent through it.send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
public void send(int code,
PendingIntent.OnFinished onFinished,
Handler handler)
throws PendingIntent.CanceledException
code - Result code to supply back to the PendingIntent's target.onFinished - The object to call back on when the send has
completed, or null for no callback.handler - Handler identifying the thread on which the callback
should happen. If null, the callback will happen from the thread
pool of the process.
PendingIntent.CanceledException - Throws CanceledException if the PendingIntent
is no longer allowing more intents to be sent through it.send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
public void send(Context context,
int code,
Intent intent,
PendingIntent.OnFinished onFinished,
Handler handler)
throws PendingIntent.CanceledException
For the intent parameter, a PendingIntent
often has restrictions on which fields can be supplied here, based on
how the PendingIntent was retrieved in getActivity(android.content.Context, int, android.content.Intent, int),
getBroadcast(android.content.Context, int, android.content.Intent, int), or getService(android.content.Context, int, android.content.Intent, int).
context - The Context of the caller. This may be null if
intent is also null.code - Result code to supply back to the PendingIntent's target.intent - Additional Intent data. See Intent.fillIn() for information on how this is applied to the
original Intent. Use null to not modify the original Intent.onFinished - The object to call back on when the send has
completed, or null for no callback.handler - Handler identifying the thread on which the callback
should happen. If null, the callback will happen from the thread
pool of the process.
PendingIntent.CanceledException - Throws CanceledException if the PendingIntent
is no longer allowing more intents to be sent through it.send(),
send(int),
send(Context, int, Intent),
send(int, android.app.PendingIntent.OnFinished, Handler)public String getTargetPackage()
public boolean equals(Object otherObj)
getActivity(android.content.Context, int, android.content.Intent, int),
getBroadcast(android.content.Context, int, android.content.Intent, int), or getService(android.content.Context, int, android.content.Intent, int) multiple times (even
across a process being killed), resulting in different PendingIntent
objects but whose equals() method identifies them as being the same
operation.
equals in class ObjectotherObj - Object the object to compare with this object.
true if the object is the same as this
object false if it is different from this object.Object.hashCode()public int hashCode()
Objecttrue when passed to .equals must
answer the same value for this method.
hashCode in class ObjectObject.equals(java.lang.Object)public int describeContents()
Parcelable
describeContents in interface Parcelable
public void writeToParcel(Parcel out,
int flags)
Parcelable
writeToParcel in interface Parcelableout - The Parcel in which the object should be written.flags - Additional flags about how the object should be written.
May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE.
public static void writePendingIntentOrNullToParcel(PendingIntent sender,
Parcel out)
readPendingIntentOrNullFromParcel(android.os.Parcel)
for later reading it.
sender - The PendingIntent to write, or null.out - Where to write the PendingIntent.public static PendingIntent readPendingIntentOrNullFromParcel(Parcel in)
writePendingIntentOrNullToParcel(android.app.PendingIntent, android.os.Parcel).
in - The Parcel containing the written Messenger.
IIntentSender getTarget()
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||