Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +9 −3 Original line number Diff line number Diff line Loading @@ -262,23 +262,29 @@ public class StatusBarWindowView extends FrameLayout { * Propagate {@link StatusBar} pulsing state. */ public void setPulsing(boolean pulsing) { if (mLockIcon != null) { mLockIcon.setPulsing(pulsing); } } /** * Called when the biometric authentication mode changes. * @param wakeAndUnlock If the type is {@link BiometricUnlockController#isWakeAndUnlock()} */ public void onBiometricAuthModeChanged(boolean wakeAndUnlock) { if (mLockIcon != null) { mLockIcon.onBiometricAuthModeChanged(wakeAndUnlock); } } /** * Called after finished unlocking and the status bar window is already collapsed. */ public void onKeyguardFadedAway() { if (mLockIcon != null) { mLockIcon.onKeyguardFadedAway(); } } public void setStatusBarView(PhoneStatusBarView statusBarView) { mStatusBarView = statusBarView; Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +9 −3 Original line number Diff line number Diff line Loading @@ -262,23 +262,29 @@ public class StatusBarWindowView extends FrameLayout { * Propagate {@link StatusBar} pulsing state. */ public void setPulsing(boolean pulsing) { if (mLockIcon != null) { mLockIcon.setPulsing(pulsing); } } /** * Called when the biometric authentication mode changes. * @param wakeAndUnlock If the type is {@link BiometricUnlockController#isWakeAndUnlock()} */ public void onBiometricAuthModeChanged(boolean wakeAndUnlock) { if (mLockIcon != null) { mLockIcon.onBiometricAuthModeChanged(wakeAndUnlock); } } /** * Called after finished unlocking and the status bar window is already collapsed. */ public void onKeyguardFadedAway() { if (mLockIcon != null) { mLockIcon.onKeyguardFadedAway(); } } public void setStatusBarView(PhoneStatusBarView statusBarView) { mStatusBarView = statusBarView; Loading