diff options
| author | 2021-01-29 16:02:59 +0000 | |
|---|---|---|
| committer | 2021-01-29 16:02:59 +0000 | |
| commit | 2d1e90b508971e3cfa52727d595442bb7cef802a (patch) | |
| tree | 200658d71f97e75a65aafe7d6cbe6ad4e3b6bc22 | |
| parent | 47c04289f8948f59341b4a57da530791f8b7dc31 (diff) | |
| parent | 604fa4df2253108da24cea916b2e6c93c8a9d271 (diff) | |
Merge "Fix notification time text color" into sc-dev
| -rw-r--r-- | core/java/android/app/Notification.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index 68d3a9203f12..49f508d83f91 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -5255,6 +5255,7 @@ public class Notification implements Parcelable // We still want a time to be set but gone, such that we can show and hide it // on demand in case it's a child notification without anything in the header contentView.setLong(R.id.time, "setTime", mN.when != 0 ? mN.when : mN.creationTime); + setTextViewColorSecondary(contentView, R.id.time, p); } } |