diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-09-10 10:54:46 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2009-09-10 12:08:50 -0700 |
| commit | bcbcaa7edd32ba67c6290d79f7e7821c4b5b39ac (patch) | |
| tree | 7840b8a005d8261f864b8404e5cf5941cf6caf80 /core/java/android/app/PendingIntent.java | |
| parent | e1fd02400d69c059db2cc6299c893eba4096cc1d (diff) | |
Wallpapers, animations, pending intent.
Some more tweaks and fixes to wallpapers. Make sure wallpapers are
told they are not visible when the screen is off. Add some new animations
for transitions across tasks, and fiddle with many of the existing
animations. Clean up the relationship between translucent activities
and animations. Add new API to start a PendingIntent from an
activity.
Change-Id: Ie0bf45fe44081bb6982c75361257a55d9cd9d863
Diffstat (limited to 'core/java/android/app/PendingIntent.java')
| -rw-r--r-- | core/java/android/app/PendingIntent.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/app/PendingIntent.java b/core/java/android/app/PendingIntent.java index f7479bcdb8bf..18d9b92fbc5c 100644 --- a/core/java/android/app/PendingIntent.java +++ b/core/java/android/app/PendingIntent.java @@ -519,7 +519,8 @@ public final class PendingIntent implements Parcelable { mTarget = IIntentSender.Stub.asInterface(target); } - /*package*/ IIntentSender getTarget() { + /** @hide */ + public IIntentSender getTarget() { return mTarget; } } |
