Merge "Fix notification background color" into sc-dev

This commit is contained in:
Jeff DeCew
2021-04-14 23:33:43 +00:00
committed by Android (Google) Code Review

View File

@@ -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);
}