Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java +3 −3 Original line number Diff line number Diff line Loading @@ -346,10 +346,10 @@ public class KeyguardBouncer { } /** * {@link #show(boolean)} was called but we're not showing yet. * {@link #show(boolean)} was called but we're not showing yet, or being dragged. */ public boolean willShowSoon() { return mShowingSoon; public boolean inTransit() { return mShowingSoon || mExpansion != EXPANSION_HIDDEN; } /** Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -719,7 +719,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb * animation didn't finish yet. */ public boolean bouncerIsOrWillBeShowing() { return mBouncer.isShowing() || mBouncer.willShowSoon(); return mBouncer.isShowing() || mBouncer.inTransit(); } public boolean isFullscreenBouncer() { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java +3 −3 Original line number Diff line number Diff line Loading @@ -346,10 +346,10 @@ public class KeyguardBouncer { } /** * {@link #show(boolean)} was called but we're not showing yet. * {@link #show(boolean)} was called but we're not showing yet, or being dragged. */ public boolean willShowSoon() { return mShowingSoon; public boolean inTransit() { return mShowingSoon || mExpansion != EXPANSION_HIDDEN; } /** Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -719,7 +719,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb * animation didn't finish yet. */ public boolean bouncerIsOrWillBeShowing() { return mBouncer.isShowing() || mBouncer.willShowSoon(); return mBouncer.isShowing() || mBouncer.inTransit(); } public boolean isFullscreenBouncer() { Loading