diff options
| author | Chris Wren <cwren@android.com> | 2012-04-23 16:05:42 -0400 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-04-23 13:51:52 -0700 |
| commit | b023bf85a080442117b5dae8d402bce60cd0a610 (patch) | |
| tree | 39b11be5f7199a781235d9c961673b3f54cab74b /core/java/android/app/Notification.java | |
| parent | 32ef750af01732b6446427412df4b442e68f2c6c (diff) | |
let default notifications with actions get bigger that 64dp.
Bug: 6377749
Change-Id: I8c92ef67b59f7a44b61926c32480cce6990a1375
Diffstat (limited to 'core/java/android/app/Notification.java')
| -rw-r--r-- | core/java/android/app/Notification.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index b581f99eef75..0a996dfaec9b 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1450,7 +1450,7 @@ public class Notification implements Parcelable private RemoteViews makeBigContentView() { if (mActions.size() == 0) return null; - return applyStandardTemplateWithActions(R.layout.notification_template_base); + return applyStandardTemplateWithActions(R.layout.notification_template_big_base); } private RemoteViews generateActionButton(Action action) { |
