Merge "Fix dismiss callback when keyguard is dismissing." into tm-qpr-dev

This commit is contained in:
Aaron Liu
2023-03-29 21:08:40 +00:00
committed by Android (Google) Code Review
2 changed files with 7 additions and 9 deletions

View File

@@ -106,10 +106,9 @@ constructor(
val panelExpansionAmount: Flow<Float> = repository.panelExpansionAmount val panelExpansionAmount: Flow<Float> = repository.panelExpansionAmount
/** 0f = bouncer fully hidden. 1f = bouncer fully visible. */ /** 0f = bouncer fully hidden. 1f = bouncer fully visible. */
val bouncerExpansion: Flow<Float> = val bouncerExpansion: Flow<Float> =
combine( combine(repository.panelExpansionAmount, repository.primaryBouncerShow) {
repository.panelExpansionAmount, panelExpansion,
repository.primaryBouncerShow primaryBouncerIsShowing ->
) { panelExpansion, primaryBouncerIsShowing ->
if (primaryBouncerIsShowing) { if (primaryBouncerIsShowing) {
1f - panelExpansion 1f - panelExpansion
} else { } else {
@@ -201,6 +200,7 @@ constructor(
dismissCallbackRegistry.notifyDismissCancelled() dismissCallbackRegistry.notifyDismissCancelled()
} }
repository.setPrimaryStartDisappearAnimation(null)
falsingCollector.onBouncerHidden() falsingCollector.onBouncerHidden()
keyguardStateController.notifyPrimaryBouncerShowing(false /* showing */) keyguardStateController.notifyPrimaryBouncerShowing(false /* showing */)
cancelShowRunnable() cancelShowRunnable()
@@ -312,11 +312,8 @@ constructor(
runnable.run() runnable.run()
return return
} }
val finishRunnable = Runnable {
runnable.run() repository.setPrimaryStartDisappearAnimation(runnable)
repository.setPrimaryStartDisappearAnimation(null)
}
repository.setPrimaryStartDisappearAnimation(finishRunnable)
} }
/** Determine whether to show the side fps animation. */ /** Determine whether to show the side fps animation. */

View File

@@ -131,6 +131,7 @@ class PrimaryBouncerInteractorTest : SysuiTestCase() {
verify(repository).setPrimaryShowingSoon(false) verify(repository).setPrimaryShowingSoon(false)
verify(repository).setPrimaryShow(false) verify(repository).setPrimaryShow(false)
verify(mPrimaryBouncerCallbackInteractor).dispatchVisibilityChanged(View.INVISIBLE) verify(mPrimaryBouncerCallbackInteractor).dispatchVisibilityChanged(View.INVISIBLE)
verify(repository).setPrimaryStartDisappearAnimation(null)
} }
@Test @Test