diff options
| author | 2021-04-14 23:33:43 +0000 | |
|---|---|---|
| committer | 2021-04-14 23:33:43 +0000 | |
| commit | fe8298fde3f9f4f9931e789e97ca571af7ff9baa (patch) | |
| tree | 356215414b870f3fdc2ab7027381d018e6292f1a | |
| parent | 4d139ff936d44680d92c56f5b0f8cf338d6d83a8 (diff) | |
| parent | 451f3ff377ba6b9824f3f80a1a9fbfdde9f18215 (diff) | |
Merge "Fix notification background color" into sc-dev
| -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 d15d1b72132a..7ce0c7060b05 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -6315,7 +6315,7 @@ public class Notification implements Parcelable * Gets the theme's background color */ private @ColorInt int getDefaultBackgroundColor() { - return obtainThemeColor(R.attr.colorBackground, + return obtainThemeColor(R.attr.colorSurface, mInNightMode ? Color.BLACK : Color.WHITE); } |