diff options
author | Beverly <beverlyt@google.com> | 2020-10-19 11:42:01 -0400 |
---|---|---|
committer | Beverly <beverlyt@google.com> | 2020-10-19 20:47:14 -0400 |
commit | 4116599e26a4fb4f0c7e7671393734c11db892d6 (patch) | |
tree | eb1768cd267232c46b01a39d3ca4fd5c404843a9 /packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java | |
parent | 58b2025873bb87ec97db04e7025ee861016bfe36 (diff) |
Add gradient clock to AOD/LS behind LS flag
Also updates "new lockscreen" smart space layout.
Currently TimeBasedColorsClockController will change the TextClock's
colors based on hardcoded times.
To toggle on the new lockscreen:
adb shell settings put global show_new_lockscreen 1
Test: atest KeyguardSliceViewTest
Test: manual
Bug: 170228350
Change-Id: Ib72b45aad34fe4483538a9094154d6c473910612
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java index 0efb5eea4217..7705db4e3147 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardStatusViewController.java @@ -267,6 +267,7 @@ public class KeyguardStatusViewController extends ViewController<KeyguardStatusV @Override public void onLockScreenModeChanged(int mode) { mKeyguardClockSwitchController.updateLockScreenMode(mode); + mKeyguardSliceViewController.updateLockScreenMode(mode); } @Override |