Bouncer pin appear flashes the message area

cleaning up this transition a bit where the message will briefly show if
you are tracking your finger slightly from LS.

Test: Track bouncer to show apper animation.
Fixes: 271576016
Change-Id: Ic8bd2d0e015ca407ab2a08cd6e0646c1c277f88e
This commit is contained in:
Aaron Liu
2023-03-03 09:02:02 -08:00
parent f885dad18e
commit d5598e92d5

View File

@@ -217,9 +217,11 @@ public class KeyguardPINView extends KeyguardPinBasedInputView {
private void animate(float progress) {
Interpolator standardDecelerate = Interpolators.STANDARD_DECELERATE;
Interpolator legacyDecelerate = Interpolators.LEGACY_DECELERATE;
float standardProgress = standardDecelerate.getInterpolation(progress);
mBouncerMessageView.setTranslationY(
mYTrans - mYTrans * standardDecelerate.getInterpolation(progress));
mYTrans - mYTrans * standardProgress);
mBouncerMessageView.setAlpha(standardProgress);
for (int i = 0; i < mViews.length; i++) {
View[] row = mViews[i];
@@ -236,7 +238,7 @@ public class KeyguardPINView extends KeyguardPinBasedInputView {
view.setAlpha(scaledProgress);
int yDistance = mYTrans + mYTransOffset * i;
view.setTranslationY(
yDistance - (yDistance * standardDecelerate.getInterpolation(progress)));
yDistance - (yDistance * standardProgress));
if (view instanceof NumPadAnimationListener) {
((NumPadAnimationListener) view).setProgress(scaledProgress);
}