summaryrefslogtreecommitdiffstats
path: root/core/java/android/app
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2011-01-12 17:07:11 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-12 17:07:11 -0800
commitf4699efb635dc7695e346343e9b9024ed225a612 (patch)
tree99f0ad7d0d7ad9e9699bdf3483dd4e5e8cf40844 /core/java/android/app
parent0123afbb228c2849f481b5219ce82c070562b04a (diff)
parentc9596d6d8e9154b5f87c8e887bfabf7546b68af5 (diff)
downloadframeworks_base-f4699efb635dc7695e346343e9b9024ed225a612.zip
frameworks_base-f4699efb635dc7695e346343e9b9024ed225a612.tar.gz
frameworks_base-f4699efb635dc7695e346343e9b9024ed225a612.tar.bz2
Merge "Possibly fix bad notification updates." into honeycomb
Diffstat (limited to 'core/java/android/app')
-rw-r--r--core/java/android/app/Notification.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java
index 7b7cb37..0243b02 100644
--- a/core/java/android/app/Notification.java
+++ b/core/java/android/app/Notification.java
@@ -574,7 +574,15 @@ public class Notification implements Parcelable
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
- sb.append("Notification(vibrate=");
+ sb.append("Notification(contentView=");
+ if (contentView != null) {
+ sb.append(contentView.getPackage());
+ sb.append("/0x");
+ sb.append(Integer.toHexString(contentView.getLayoutId()));
+ } else {
+ sb.append("null");
+ }
+ sb.append(" vibrate=");
if (this.vibrate != null) {
int N = this.vibrate.length-1;
sb.append("[");