diff options
author | Daniel Norman <danielnorman@google.com> | 2020-12-07 11:08:05 -0800 |
---|---|---|
committer | Brian Orr <brianorr@google.com> | 2020-12-08 09:58:55 -0800 |
commit | b03d6d43646266d456c22154a1f6fd945bf79f83 (patch) | |
tree | 2ae5ec75e3feaefff9efcb1ad0e5b8969ee3edab /packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java | |
parent | 6fd2029083f802fad11a5d22f3a56eeac143a2b9 (diff) | |
parent | 5d0055804a0411513dea2d7b1ecaa9c27872a3a0 (diff) |
Merge SP1A.201207.001
Change-Id: I1cca277b923fed07896ee2e268c8da7df72eedce
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java index 5e452666bece..3a96bf6b4b64 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java @@ -20,6 +20,7 @@ import static com.android.internal.util.LatencyTracker.ACTION_CHECK_CREDENTIAL; import static com.android.internal.util.LatencyTracker.ACTION_CHECK_CREDENTIAL_UNLOCKED; import static com.android.keyguard.KeyguardAbsKeyInputView.MINIMUM_PASSWORD_LENGTH_BEFORE_REPORT; +import android.annotation.CallSuper; import android.content.res.ColorStateList; import android.os.AsyncTask; import android.os.CountDownTimer; @@ -87,6 +88,7 @@ public abstract class KeyguardAbsKeyInputViewController<T extends KeyguardAbsKey @Override protected void onViewAttached() { + super.onViewAttached(); mView.setKeyDownListener(mKeyDownListener); mView.setEnableHaptics(mLockPatternUtils.isTactileFeedbackEnabled()); EmergencyButton button = mView.findViewById(R.id.emergency_call_button); @@ -110,6 +112,13 @@ public abstract class KeyguardAbsKeyInputViewController<T extends KeyguardAbsKey } } + @CallSuper + @Override + public void reloadColors() { + super.reloadColors(); + mMessageAreaController.reloadColors(); + } + @Override public boolean needsInput() { return false; |