diff options
author | Dave Mankoff <mankoff@google.com> | 2020-09-11 15:41:28 -0400 |
---|---|---|
committer | Dave Mankoff <mankoff@google.com> | 2020-09-16 16:27:51 -0400 |
commit | 720c7c6eff34fd005f130f39f5ab8d63ba8b9ced (patch) | |
tree | 784ebb36697b134d47138bdd8c505a676234cf22 /packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java | |
parent | 1d569867a411c92c216f825acaa9e11c11028532 (diff) |
8/N Remove View Injection from KeyguardMessageArea
Bug: 166448040
Test: manual && atest SystemUITests
Change-Id: I805286374d16162703b333452e5e35015449d1fe
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java index 3108ae3d2354..0ddc9680a217 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputViewController.java @@ -82,6 +82,12 @@ public abstract class KeyguardAbsKeyInputViewController<T extends KeyguardAbsKey abstract void resetState(); @Override + public void init() { + super.init(); + mMessageAreaController.init(); + } + + @Override protected void onViewAttached() { mView.setKeyDownListener(mKeyDownListener); mView.setEnableHaptics(mLockPatternUtils.isTactileFeedbackEnabled()); |