Merge "Fix reversed remote input reveal anims" into tm-dev

This commit is contained in:
TreeHugger Robot
2022-03-22 05:53:04 +00:00
committed by Android (Google) Code Review

View File

@@ -903,11 +903,11 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
this.radius = radius;
}
Animator createCircularRevealAnimator(View view) {
Animator createCircularHideAnimator(View view) {
return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, radius, 0);
}
Animator createCircularHideAnimator(View view) {
Animator createCircularRevealAnimator(View view) {
return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, 0, radius);
}
}