diff options
| author | 2021-06-15 15:48:10 +0000 | |
|---|---|---|
| committer | 2021-06-15 15:48:10 +0000 | |
| commit | a00b2dab47300e40aa609423351c936133eb3b7d (patch) | |
| tree | 94b069825da5132e870be8d9f70d12e8c30d9813 | |
| parent | 8f10280b15b01c0608644affcea8013a5febbc39 (diff) | |
| parent | a020a4bb6544082f639b3a8844157e5cab8b44ec (diff) | |
Merge "Change date with clock in QS headers" into sc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java index 08a68bc8a9a7..7cc6ecd8cf62 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java @@ -266,10 +266,9 @@ public class QuickStatusBarHeader extends FrameLayout { private void updateAlphaAnimator() { TouchAnimator.Builder builder = new TouchAnimator.Builder() - // The following two views have to be hidden manually, so as not to hide the - // Privacy chip in QQS - .addFloat(mDateView, "alpha", 0, 1) .addFloat(mSecurityHeaderView, "alpha", 0, 1) + // These views appear on expanding down + .addFloat(mClockView, "alpha", 0, 1) .addFloat(mQSCarriers, "alpha", 0, 1) .setListener(new TouchAnimator.ListenerAdapter() { @Override |