Merge "StatusBar unfold transition: reset translations when rotating" into sc-v2-dev

This commit is contained in:
TreeHugger Robot
2021-10-21 21:50:31 +00:00
committed by Android (Google) Code Review

View File

@@ -63,5 +63,11 @@ class StatusBarMoveFromCenterAnimationController @Inject constructor(
override fun onTransitionProgress(progress: Float) {
moveFromCenterAnimator?.onTransitionProgress(progress)
}
override fun onTransitionFinished() {
// Reset translations when transition is stopped/cancelled
// (e.g. the transition could be cancelled mid-way when rotating the screen)
moveFromCenterAnimator?.onTransitionProgress(1f)
}
}
}